mirror of https://git.rancher.io/charts
Merge pull request #2662 from MbolotSuse/wh-bump-0.3.5-rc5-rm
Make remove rancher-webhook 0.3.5-rc5pull/2628/head
commit
58518f1e9f
Binary file not shown.
|
@ -1,18 +0,0 @@
|
||||||
annotations:
|
|
||||||
catalog.cattle.io/certified: rancher
|
|
||||||
catalog.cattle.io/hidden: "true"
|
|
||||||
catalog.cattle.io/kube-version: '>= 1.16.0-0 < 1.27.0-0'
|
|
||||||
catalog.cattle.io/namespace: cattle-system
|
|
||||||
catalog.cattle.io/os: linux
|
|
||||||
catalog.cattle.io/permits-os: linux,windows
|
|
||||||
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
|
|
||||||
catalog.cattle.io/release-name: rancher-webhook
|
|
||||||
apiVersion: v2
|
|
||||||
appVersion: 0.3.5-rc5
|
|
||||||
dependencies:
|
|
||||||
- condition: capi.enabled
|
|
||||||
name: capi
|
|
||||||
repository: ""
|
|
||||||
description: ValidatingAdmissionWebhook for Rancher types
|
|
||||||
name: rancher-webhook
|
|
||||||
version: 2.0.5+up0.3.5-rc5
|
|
|
@ -1,4 +0,0 @@
|
||||||
apiVersion: v2
|
|
||||||
appVersion: 0.0.0
|
|
||||||
name: capi
|
|
||||||
version: 0.0.0
|
|
|
@ -1,13 +0,0 @@
|
||||||
kind: Service
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: webhook-service
|
|
||||||
annotations:
|
|
||||||
need-a-cert.cattle.io/secret-name: rancher-webhook-tls
|
|
||||||
spec:
|
|
||||||
ports:
|
|
||||||
- name: https
|
|
||||||
port: 443
|
|
||||||
targetPort: 8777
|
|
||||||
selector:
|
|
||||||
app: rancher-webhook
|
|
|
@ -1,22 +0,0 @@
|
||||||
{{- define "system_default_registry" -}}
|
|
||||||
{{- if .Values.global.cattle.systemDefaultRegistry -}}
|
|
||||||
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}}
|
|
||||||
{{- else -}}
|
|
||||||
{{- "" -}}
|
|
||||||
{{- end -}}
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{- define "rancher-webhook.labels" -}}
|
|
||||||
app: rancher-webhook
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
{{- define "linux-node-tolerations" -}}
|
|
||||||
- key: "cattle.io/os"
|
|
||||||
value: "linux"
|
|
||||||
effect: "NoSchedule"
|
|
||||||
operator: "Equal"
|
|
||||||
{{- end -}}
|
|
||||||
|
|
||||||
{{- define "linux-node-selector" -}}
|
|
||||||
kubernetes.io/os: linux
|
|
||||||
{{- end -}}
|
|
|
@ -1,72 +0,0 @@
|
||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: rancher-webhook
|
|
||||||
spec:
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: rancher-webhook
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: rancher-webhook
|
|
||||||
spec:
|
|
||||||
{{- if .Values.capi.enabled }}
|
|
||||||
volumes:
|
|
||||||
- name: tls
|
|
||||||
secret:
|
|
||||||
secretName: rancher-webhook-tls
|
|
||||||
{{- end }}
|
|
||||||
{{- if .Values.global.hostNetwork }}
|
|
||||||
hostNetwork: true
|
|
||||||
{{- end }}
|
|
||||||
nodeSelector: {{ include "linux-node-selector" . | nindent 8 }}
|
|
||||||
{{- if .Values.nodeSelector }}
|
|
||||||
{{ toYaml .Values.nodeSelector | indent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
tolerations: {{ include "linux-node-tolerations" . | nindent 6 }}
|
|
||||||
{{- if .Values.tolerations }}
|
|
||||||
{{ toYaml .Values.tolerations | indent 6 }}
|
|
||||||
{{- end }}
|
|
||||||
containers:
|
|
||||||
- env:
|
|
||||||
- name: STAMP
|
|
||||||
value: "{{.Values.stamp}}"
|
|
||||||
- name: ENABLE_CAPI
|
|
||||||
value: "{{.Values.capi.enabled}}"
|
|
||||||
- name: ENABLE_MCM
|
|
||||||
value: "{{.Values.mcm.enabled}}"
|
|
||||||
- name: NAMESPACE
|
|
||||||
valueFrom:
|
|
||||||
fieldRef:
|
|
||||||
fieldPath: metadata.namespace
|
|
||||||
image: '{{ template "system_default_registry" . }}{{ .Values.image.repository }}:{{ .Values.image.tag }}'
|
|
||||||
name: rancher-webhook
|
|
||||||
imagePullPolicy: "{{ .Values.image.imagePullPolicy }}"
|
|
||||||
ports:
|
|
||||||
- name: https
|
|
||||||
containerPort: 9443
|
|
||||||
- name: capi-https
|
|
||||||
containerPort: 8777
|
|
||||||
startupProbe:
|
|
||||||
httpGet:
|
|
||||||
path: "/healthz"
|
|
||||||
port: "https"
|
|
||||||
scheme: "HTTPS"
|
|
||||||
failureThreshold: 60
|
|
||||||
periodSeconds: 5
|
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: "/healthz"
|
|
||||||
port: "https"
|
|
||||||
scheme: "HTTPS"
|
|
||||||
periodSeconds: 5
|
|
||||||
{{- if .Values.capi.enabled }}
|
|
||||||
volumeMounts:
|
|
||||||
- name: tls
|
|
||||||
mountPath: /tmp/k8s-webhook-server/serving-certs
|
|
||||||
{{- end }}
|
|
||||||
serviceAccountName: rancher-webhook
|
|
||||||
{{- if .Values.priorityClassName }}
|
|
||||||
priorityClassName: "{{.Values.priorityClassName}}"
|
|
||||||
{{- end }}
|
|
|
@ -1,12 +0,0 @@
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
|
||||||
kind: ClusterRoleBinding
|
|
||||||
metadata:
|
|
||||||
name: rancher-webhook
|
|
||||||
roleRef:
|
|
||||||
apiGroup: rbac.authorization.k8s.io
|
|
||||||
kind: ClusterRole
|
|
||||||
name: cluster-admin
|
|
||||||
subjects:
|
|
||||||
- kind: ServiceAccount
|
|
||||||
name: rancher-webhook
|
|
||||||
namespace: {{.Release.Namespace}}
|
|
|
@ -1,13 +0,0 @@
|
||||||
kind: Service
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: rancher-webhook
|
|
||||||
namespace: cattle-system
|
|
||||||
spec:
|
|
||||||
ports:
|
|
||||||
- port: 443
|
|
||||||
targetPort: 9443
|
|
||||||
protocol: TCP
|
|
||||||
name: https
|
|
||||||
selector:
|
|
||||||
app: rancher-webhook
|
|
|
@ -1,4 +0,0 @@
|
||||||
apiVersion: v1
|
|
||||||
kind: ServiceAccount
|
|
||||||
metadata:
|
|
||||||
name: rancher-webhook
|
|
|
@ -1,9 +0,0 @@
|
||||||
apiVersion: admissionregistration.k8s.io/v1
|
|
||||||
kind: ValidatingWebhookConfiguration
|
|
||||||
metadata:
|
|
||||||
name: rancher.cattle.io
|
|
||||||
---
|
|
||||||
apiVersion: admissionregistration.k8s.io/v1
|
|
||||||
kind: MutatingWebhookConfiguration
|
|
||||||
metadata:
|
|
||||||
name: rancher.cattle.io
|
|
|
@ -1,22 +0,0 @@
|
||||||
image:
|
|
||||||
repository: rancher/rancher-webhook
|
|
||||||
tag: v0.3.5-rc5
|
|
||||||
imagePullPolicy: IfNotPresent
|
|
||||||
|
|
||||||
global:
|
|
||||||
cattle:
|
|
||||||
systemDefaultRegistry: ""
|
|
||||||
hostNetwork: false
|
|
||||||
|
|
||||||
capi:
|
|
||||||
enabled: false
|
|
||||||
|
|
||||||
mcm:
|
|
||||||
enabled: true
|
|
||||||
|
|
||||||
# tolerations for the webhook deployment. See https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/ for more info
|
|
||||||
tolerations: []
|
|
||||||
nodeSelector: {}
|
|
||||||
|
|
||||||
## PriorityClassName assigned to deployment.
|
|
||||||
priorityClassName: ""
|
|
10
index.yaml
10
index.yaml
|
@ -13769,18 +13769,18 @@ entries:
|
||||||
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
|
catalog.cattle.io/rancher-version: '>= 2.7.0-0 < 2.8.0-0'
|
||||||
catalog.cattle.io/release-name: rancher-webhook
|
catalog.cattle.io/release-name: rancher-webhook
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 0.3.5-rc5
|
appVersion: 0.3.5-rc6
|
||||||
created: "2023-05-13T20:11:44.995297-04:00"
|
created: "2023-05-22T15:26:24.132850358-05:00"
|
||||||
dependencies:
|
dependencies:
|
||||||
- condition: capi.enabled
|
- condition: capi.enabled
|
||||||
name: capi
|
name: capi
|
||||||
repository: ""
|
repository: ""
|
||||||
description: ValidatingAdmissionWebhook for Rancher types
|
description: ValidatingAdmissionWebhook for Rancher types
|
||||||
digest: 7f18ad21a68b2b54dedbe43f60c3806367c5a17757e37193641cd8719310b894
|
digest: 4571951208e7b9d491b5d1f5a9b123104879fcf8a25bb49d3a9b8901fae2334f
|
||||||
name: rancher-webhook
|
name: rancher-webhook
|
||||||
urls:
|
urls:
|
||||||
- assets/rancher-webhook/rancher-webhook-2.0.5+up0.3.5-rc5.tgz
|
- assets/rancher-webhook/rancher-webhook-2.0.5+up0.3.5-rc6.tgz
|
||||||
version: 2.0.5+up0.3.5-rc5
|
version: 2.0.5+up0.3.5-rc6
|
||||||
- annotations:
|
- annotations:
|
||||||
catalog.cattle.io/certified: rancher
|
catalog.cattle.io/certified: rancher
|
||||||
catalog.cattle.io/hidden: "true"
|
catalog.cattle.io/hidden: "true"
|
||||||
|
|
|
@ -36,7 +36,6 @@ fleet-crd:
|
||||||
- 102.0.0+up0.6.0
|
- 102.0.0+up0.6.0
|
||||||
- 102.1.0+up0.7.0-rc.3
|
- 102.1.0+up0.7.0-rc.3
|
||||||
rancher-webhook:
|
rancher-webhook:
|
||||||
- 2.0.5+up0.3.5-rc5
|
|
||||||
- 2.0.5+up0.3.5-rc6
|
- 2.0.5+up0.3.5-rc6
|
||||||
harvester-csi-driver:
|
harvester-csi-driver:
|
||||||
- 100.0.4+up0.1.16
|
- 100.0.4+up0.1.16
|
||||||
|
|
Loading…
Reference in New Issue