mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
This allows for doing stuff like this on the custom resource: ``` security_context_settings: runAsUser: 1000 runAsGroup: 0 ``` I added `snakeCaseParameters: False` because without it, variables like `runAsUser` become `run_as_user`... and that doesnt work.
21 lines
416 B
YAML
21 lines
416 B
YAML
---
|
|
# Use the 'create api' subcommand to add watches to this file.
|
|
- version: v1beta1
|
|
group: awx.ansible.com
|
|
kind: AWX
|
|
role: installer
|
|
snakeCaseParameters: False
|
|
|
|
- version: v1beta1
|
|
group: awx.ansible.com
|
|
kind: AWXBackup
|
|
role: backup
|
|
snakeCaseParameters: False
|
|
|
|
- version: v1beta1
|
|
group: awx.ansible.com
|
|
kind: AWXRestore
|
|
role: restore
|
|
snakeCaseParameters: False
|
|
# +kubebuilder:scaffold:watch
|