Skip to content
New issue

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

auto create ConfigMap in shared-resoruces that injects the openshift trust ca bundle #51

Open
itewk opened this issue Jul 21, 2021 · 0 comments
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed

Comments

@itewk
Copy link
Contributor

itewk commented Jul 21, 2021

purpose

its useful to have all the openshift trusted CAs at runtime in the worfklow so we might as well auto create a config map that has them.

partially done work:

---
apiVersion: v1
kind: ConfigMap
metadata:
  name: {{ include "ploigos-workflow.name" . }}-trusted-ca-bundle
  labels:
    config.openshift.io/inject-trusted-cabundle: 'true'
    {{- include "ploigos-workflow.labels" $ | nindent 4 }}
data:
  {{- with $.Values.global.additionalTrustedCerts }}
  {{- toYaml . | nindent 2 }}
  {{- end }}
@itewk itewk added enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed labels Jul 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant