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
Looks like these are bugs in RBAC template.
ServiceAccount name and namespace are same values https://github.com/instana/instana-autotrace-webhook/blob/main/incubator/instana-autotrace-webhook/templates/mutating-webhook-rbac.yaml#L6-L7 Fix: name: {{ .Release.Name }}
name: {{ .Release.Name }}
Static defining of app.kubernetes.io/instance https://github.com/instana/instana-autotrace-webhook/blob/main/incubator/instana-autotrace-webhook/templates/deployment.yml#L18 is causing conflict in case webhook deployed under other release name https://github.com/instana/instana-autotrace-webhook/blob/main/incubator/instana-autotrace-webhook/templates/_helpers.tpl#L43 Fix:
app.kubernetes.io/instance
L18: selector: matchLabels: app.kubernetes.io/name: {{ include "instana-autotrace-webhook.name" . }}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Looks like these are bugs in RBAC template.
ServiceAccount name and namespace are same values
https://github.com/instana/instana-autotrace-webhook/blob/main/incubator/instana-autotrace-webhook/templates/mutating-webhook-rbac.yaml#L6-L7
Fix:
name: {{ .Release.Name }}
Static defining of
app.kubernetes.io/instance
https://github.com/instana/instana-autotrace-webhook/blob/main/incubator/instana-autotrace-webhook/templates/deployment.yml#L18
is causing conflict in case webhook deployed under other release name
https://github.com/instana/instana-autotrace-webhook/blob/main/incubator/instana-autotrace-webhook/templates/_helpers.tpl#L43
Fix:
The text was updated successfully, but these errors were encountered: