mirror of
https://github.com/Expand-sys/awx-on-k3s
synced 2025-12-16 05:52:15 +11:00
41 lines
971 B
YAML
41 lines
971 B
YAML
---
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: eda
|
|
|
|
generatorOptions:
|
|
disableNameSuffixHash: true
|
|
|
|
secretGenerator:
|
|
- name: eda-secret-tls
|
|
type: kubernetes.io/tls
|
|
files:
|
|
- tls.crt
|
|
- tls.key
|
|
|
|
- name: eda-database-configuration
|
|
type: Opaque
|
|
literals:
|
|
- host=eda-postgres-13
|
|
- port=5432
|
|
- database=eda
|
|
- username=eda
|
|
- password=Ansible123!
|
|
- type=managed
|
|
|
|
- name: eda-admin-password
|
|
type: Opaque
|
|
literals:
|
|
- password=Ansible123!
|
|
|
|
# If you want to specify encryption key for EDA Server, uncomment following lines and change the value.
|
|
# Refer README for detail about encryption key.
|
|
# https://github.com/ansible/eda-server-operator/tree/main#database-fields-encryption-configuration
|
|
#- name: db_fields_encryption_secret
|
|
# type: Opaque
|
|
# literals:
|
|
# - secret_key=MySuperSecureDBFieldsEncryptionKey123!
|
|
|
|
resources:
|
|
- pv.yaml
|
|
- eda.yaml
|