Skip to content

Commit

Permalink
chore: Bump to latest calico version on the chart
Browse files Browse the repository at this point in the history
Made with ❤️️ by updatecli
  • Loading branch information
github-actions[bot] committed Dec 3, 2024
1 parent a5c4698 commit af3c0c8
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
apiVersion: batch/v1
kind: Job
metadata:
name: tigera-operator-uninstall
namespace: {{.Release.Namespace}}
labels:
helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
{{- include "tigera-operator.labels" (dict "context" .) | nindent 4 }}
annotations:
# Mark this Job as a pre-deletion hook. This will only be executed as part
# of helm uninstall, in order to ensure the Installation is cleaned up prior to
# tearing down the operator.
helm.sh/hook: pre-delete
helm.sh/hook-weight: "-5"
helm.sh/hook-delete-policy: hook-succeeded
spec:
template:
metadata:
name: "{{ .Release.Name }}"
labels:
helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
spec:
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
restartPolicy: Never
hostNetwork: true
dnsPolicy: ClusterFirstWithHostNet
serviceAccountName: tigera-operator
containers:
- name: cleanup-job
image: {{ template "tigera-operator.image" .Values.tigeraOperator}}
args: ["-pre-delete"]
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
- https://github.com/projectcalico/calico/tree/master/charts/tigera-operator
- https://github.com/tigera/operator
- https://github.com/projectcalico/calico
version: v3.29.0
version: v3.29.1
+annotations:
+ catalog.cattle.io/namespace: tigera-operator
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
- namespace: {{.Release.Namespace}}
+ namespace: tigera-operator
labels:
k8s-app: tigera-operator-uninstall
helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
@@ -35,5 +35,5 @@
{{- include "tigera-operator.labels" (dict "context" .) | nindent 4 }}
@@ -34,5 +34,5 @@
serviceAccountName: tigera-operator
containers:
- name: cleanup-job
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
tigeraOperator:
- image: tigera/operator
+ image: rancher/mirrored-calico-operator
version: v1.36.0
version: v1.36.2
- registry: quay.io
+ registry: docker.io
calicoctl:
- image: docker.io/calico/ctl
+ image: rancher/mirrored-calico-ctl
tag: v3.29.0
tag: v3.29.1

-kubeletVolumePluginPath: /var/lib/kubelet
+kubeletVolumePluginPath: "None"
Expand Down
2 changes: 1 addition & 1 deletion packages/rke2-calico/package.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
url: https://github.com/projectcalico/calico/releases/download/v3.29.0/tigera-operator-v3.29.0.tgz
url: https://github.com/projectcalico/calico/releases/download/v3.29.1/tigera-operator-v3.29.1.tgz
packageVersion: 00
additionalCharts:
- workingDir: charts-crd
Expand Down
2 changes: 1 addition & 1 deletion packages/rke2-calico/templates/crd-template/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
version: v3.29.0
version: v3.29.1
description: Installs the CRDs for rke2-calico
name: rke2-calico-crd
type: application

0 comments on commit af3c0c8

Please sign in to comment.