openstack-helm/values_overrides/cinder/nfs-cinder-backup.yaml
Vladimir Kozhukalov adc22b613b Update yamllint.conf
This PR updates the yaml linter configuration
to align it with what we have in the osh-infra
repo.

Change-Id: I3585fdc6663b2ae7bfb5c1d8a13672ac3055bf86
2025-03-12 22:59:57 -05:00

26 lines
562 B
YAML

---
conf:
cinder:
DEFAULT:
backup_driver: cinder.backup.drivers.nfs.NFSBackupDriver
backup_mount_point_base: /backup/openstack/cinder
backup_share: 10.30.1.3:/
pod:
mounts:
cinder_backup:
cinder_backup:
volumeMounts:
- mountPath: /backup
name: nfs-backup
volumes:
- emptyDir: {}
name: nfs-backup
security_context:
cinder_backup:
container:
cinder_backup:
readOnlyRootFilesystem: false
runAsGroup: 42424
runAsUser: 42424
...