mirror of
https://github.com/Expand-sys/awx-on-k3s
synced 2025-12-15 21:42:15 +11:00
42 lines
966 B
YAML
42 lines
966 B
YAML
---
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: awx
|
|
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|
|
|
|
secretGenerator:
|
|
- name: awx-secret-tls
|
|
type: kubernetes.io/tls
|
|
files:
|
|
- tls.crt
|
|
- tls.key
|
|
|
|
- name: awx-postgres-configuration
|
|
type: Opaque
|
|
literals:
|
|
- host=awx-postgres-15
|
|
- port=5432
|
|
- database=awx
|
|
- username=awx
|
|
- password=Ansible123!
|
|
- type=managed
|
|
|
|
- name: awx-admin-password
|
|
type: Opaque
|
|
literals:
|
|
- password=Ansible123!
|
|
|
|
# If you want to specify SECRET_KEY for your AWX manually, uncomment following lines and change the value.
|
|
# Refer AAC documentation for detail about SECRET_KEY.
|
|
# https://docs.ansible.com/automation-controller/latest/html/administration/secret_handling.html
|
|
#- name: awx-secret-key
|
|
# type: Opaque
|
|
# literals:
|
|
# - secret_key=MySuperSecureSecretKey123!
|
|
|
|
resources:
|
|
- pv.yaml
|
|
- pvc.yaml
|
|
- awx.yaml
|