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
The helm chart in examples has duplicate labels app.kubernetes.io/component: worker which breaks kustomize when wrapping the chart.
app.kubernetes.io/component: worker
kustomize
helm template .
... # Source: argilla/templates/worker-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: release-name-argilla-worker labels: helm.sh/chart: argilla-0.1.0 app.kubernetes.io/component: worker app.kubernetes.io/version: "latest" app.kubernetes.io/managed-by: Helm app.kubernetes.io/component: worker spec: replicas: 1 selector: matchLabels: app.kubernetes.io/component: worker app.kubernetes.io/name: release-name-worker app.kubernetes.io/instance: release-name-worker app.kubernetes.io/component: worker template: metadata: labels: app.kubernetes.io/component: worker app.kubernetes.io/name: release-name-worker app.kubernetes.io/instance: release-name-worker app.kubernetes.io/component: worker spec: ...
# Source: argilla/templates/worker-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: release-name-argilla-worker labels: helm.sh/chart: argilla-0.1.0 app.kubernetes.io/component: worker app.kubernetes.io/version: "latest" app.kubernetes.io/managed-by: Helm spec: replicas: 1 selector: matchLabels: app.kubernetes.io/component: worker app.kubernetes.io/name: release-name-worker app.kubernetes.io/instance: release-name-worker template: metadata: labels: app.kubernetes.io/component: worker app.kubernetes.io/name: release-name-worker app.kubernetes.io/instance: release-name-worker spec:
No response
The text was updated successfully, but these errors were encountered:
hi @CreMindES , thank you for this highlight. Could you help us out by creating a PR for this?
Sorry, something went wrong.
frascuchon
CreMindES
No branches or pull requests
Describe the bug
The helm chart in examples has duplicate labels
app.kubernetes.io/component: worker
which breakskustomize
when wrapping the chart.Stacktrace and code to create the bug
helm template .
Expected behavior
helm template .
Environment
Additional context
No response
The text was updated successfully, but these errors were encountered: