We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given:
jxSecrets: enabled: true cluster: enabled: true
Template charts/jx-kh-check/templates/jx-secrets-check.yaml renders incorrectly:
--- apiVersion: comcast.github.io/v1 kind: KuberhealthyCheck metadata: name: jx-secrets annotations: docs.jenkins-x.io: https://jenkins-x.io/v3/admin/troubleshooting/secrets/ spec: runInterval: <no value> timeout: <no value> podSpec: securityContext: runAsUser: 999 fsGroup: 999 containers: - env: image: <no value>:<no value> imagePullPolicy: IfNotPresent name: main resources: requests: cpu: 10m memory: 50Mi securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true serviceAccountName: jx-secrets-sa
The "- env:" line is missing the empty array, it should be: "- env: []" or be removed
The text was updated successfully, but these errors were encountered:
Fix issue jenkins-x-plugins#63
efeb0cf
Successfully merging a pull request may close this issue.
Given:
Template charts/jx-kh-check/templates/jx-secrets-check.yaml renders incorrectly:
The "- env:" line is missing the empty array, it should be: "- env: []" or be removed
The text was updated successfully, but these errors were encountered: