update webhook
This commit is contained in:
@@ -1,57 +0,0 @@
|
|||||||
apiVersion: apps/v1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
namespace: cert-manager-ops
|
|
||||||
labels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
app.kubernetes.io/name: cert-manager-webhook-ovh
|
|
||||||
app.kubernetes.io/instance: cert-manager-webhook-ovh
|
|
||||||
spec:
|
|
||||||
replicas: {{ .Values.replicaCount }}
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
annotations:
|
|
||||||
{{- toYaml .Values.podAnnotations | nindent 8 }}
|
|
||||||
spec:
|
|
||||||
serviceAccountName: {{ .Values.serviceAccount.name }}
|
|
||||||
containers:
|
|
||||||
- name: webhook
|
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
||||||
args:
|
|
||||||
- --v=2
|
|
||||||
- --group-name={{ .Values.groupName }}
|
|
||||||
- --secure-port=10250
|
|
||||||
- --cert-dir=/tmp/cert-manager-webhook-ovh
|
|
||||||
ports:
|
|
||||||
- name: https
|
|
||||||
containerPort: 10250
|
|
||||||
protocol: TCP
|
|
||||||
resources:
|
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
|
||||||
volumeMounts:
|
|
||||||
- name: certs
|
|
||||||
mountPath: /tmp/cert-manager-webhook-ovh
|
|
||||||
readOnly: false
|
|
||||||
volumes:
|
|
||||||
- name: certs
|
|
||||||
emptyDir: {}
|
|
||||||
{{- with .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
apiVersion: admissionregistration.k8s.io/v1
|
|
||||||
kind: MutatingWebhookConfiguration
|
|
||||||
metadata:
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
labels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
webhooks:
|
|
||||||
- name: webhook.cert-manager.io
|
|
||||||
admissionReviewVersions: ["v1", "v1beta1"]
|
|
||||||
clientConfig:
|
|
||||||
service:
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
namespace: cert-manager-ops
|
|
||||||
path: "/mutate"
|
|
||||||
rules:
|
|
||||||
- apiGroups: ["acme.cert-manager.io"]
|
|
||||||
apiVersions: ["v1"]
|
|
||||||
operations: ["CREATE", "UPDATE"]
|
|
||||||
resources: ["challenges"]
|
|
||||||
sideEffects: None
|
|
||||||
failurePolicy: Fail
|
|
||||||
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
apiVersion: rbac.authorization.k8s.io/v1
|
|
||||||
kind: Role
|
|
||||||
metadata:
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
namespace: cert-manager-ops
|
|
||||||
labels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
rules:
|
|
||||||
- apiGroups: [""]
|
|
||||||
resources: ["secrets"]
|
|
||||||
verbs: ["get", "list", "watch"]
|
|
||||||
---
|
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
|
||||||
kind: RoleBinding
|
|
||||||
metadata:
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
namespace: cert-manager-ops
|
|
||||||
labels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
roleRef:
|
|
||||||
apiGroup: rbac.authorization.k8s.io
|
|
||||||
kind: Role
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
subjects:
|
|
||||||
- kind: ServiceAccount
|
|
||||||
name: {{ .Values.serviceAccount.name }}
|
|
||||||
namespace: cert-manager-ops
|
|
||||||
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
namespace: cert-manager-ops
|
|
||||||
labels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
spec:
|
|
||||||
type: {{ .Values.service.type }}
|
|
||||||
ports:
|
|
||||||
- port: {{ .Values.service.port }}
|
|
||||||
targetPort: https
|
|
||||||
protocol: TCP
|
|
||||||
name: https
|
|
||||||
selector:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: ServiceAccount
|
|
||||||
metadata:
|
|
||||||
name: {{ .Values.serviceAccount.name }}
|
|
||||||
namespace: cert-manager-ops
|
|
||||||
labels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
apiVersion: admissionregistration.k8s.io/v1
|
|
||||||
kind: ValidatingWebhookConfiguration
|
|
||||||
metadata:
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
labels:
|
|
||||||
app: cert-manager-webhook-ovh
|
|
||||||
webhooks:
|
|
||||||
- name: webhook.cert-manager.io
|
|
||||||
admissionReviewVersions: ["v1", "v1beta1"]
|
|
||||||
clientConfig:
|
|
||||||
service:
|
|
||||||
name: cert-manager-webhook-ovh
|
|
||||||
namespace: cert-manager-ops
|
|
||||||
path: "/validate"
|
|
||||||
rules:
|
|
||||||
- apiGroups: ["acme.cert-manager.io"]
|
|
||||||
apiVersions: ["v1"]
|
|
||||||
operations: ["CREATE", "UPDATE"]
|
|
||||||
resources: ["challenges"]
|
|
||||||
sideEffects: None
|
|
||||||
failurePolicy: Fail
|
|
||||||
|
|
||||||
@@ -1,34 +1,15 @@
|
|||||||
# Configuration pour cert-manager-webhook-ovh
|
# Configuration pour cert-manager-webhook-ovh
|
||||||
# Ce webhook permet à cert-manager d'utiliser OVH DNS-01 challenge pour les certificats wildcard
|
# Ce webhook permet à cert-manager d'utiliser OVH DNS-01 challenge pour les certificats wildcard
|
||||||
|
|
||||||
|
cert-manager-webhook-ovh:
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
resources:
|
|
||||||
limits:
|
|
||||||
cpu: 100m
|
|
||||||
memory: 128Mi
|
|
||||||
requests:
|
|
||||||
cpu: 50m
|
|
||||||
memory: 64Mi
|
|
||||||
|
|
||||||
# Configuration du webhook
|
# Configuration du webhook
|
||||||
groupName: acme.gkdomaine.fr
|
groupName: acme.gkdomaine.fr
|
||||||
|
|
||||||
# RBAC
|
certManager:
|
||||||
serviceAccount:
|
# namespace in which your cert-manager is deployed
|
||||||
create: true
|
namespace: cert-manager-ops
|
||||||
name: cert-manager-webhook-ovh
|
# cert-manager serverAccount name (default: cert-manager)
|
||||||
|
serviceAccountName: cert-manager-ops
|
||||||
# Service
|
|
||||||
service:
|
|
||||||
type: ClusterIP
|
|
||||||
port: 443
|
|
||||||
|
|
||||||
# Pod annotations
|
|
||||||
podAnnotations: {}
|
|
||||||
|
|
||||||
# Node selector, tolerations, etc.
|
|
||||||
nodeSelector: {}
|
|
||||||
tolerations: []
|
|
||||||
affinity: {}
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user