You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using the Helm chart to deploy an instance of AWX. I am trying to get my company's TLS certificate into the pods, because we utilize company proxies that have their own TLS certificates.
My values.yaml:
AWX:
enabled: true
name: awx
spec:
admin_user: admin
bundle_cacert_secret: awx-custom-certs
secret_key_secret: awx-secret-key
no_log: false
# configurations for external postgres instance
postgres:
enabled: false
host: Unset
port: 5678
dbName: Unset
username: admin
# for secret management, pass in the password independently of this file
# at the command line, use --set AWX.postgres.password
password: Unset
sslmode: prefer
type: unmanaged
customSecrets:
enabled: true
old_postgres_configuration_secret:
old_postgres_configuration_secret: awx-old-postgres-configuration
enabled: true
secretName: awx-old-postgres-configuration
this ticket does not relate to the functionality of the chart itself, which just packages and installs the operator. I recommend you ask at https://github.com/ansible/awx-operator
I stand corrected, a lot has been added since I last looked at the chart. This still may be an issue with the operator itself, if you're specifying a field within the AWX CR spec and it's not having the desired effect
Hello,
I am using the Helm chart to deploy an instance of AWX. I am trying to get my company's TLS certificate into the pods, because we utilize company proxies that have their own TLS certificates.
My
values.yaml
:The secret in question:
What I expect: The secret is to be mounted inside the pods and trusted.
What is happening: The secret is not mounted into the pods. Via the web UI, I am getting
Unable to get local issuer certificate
.Using
customSecrets.bundleCacert
, I was able to get it into the container:The text was updated successfully, but these errors were encountered: