Skip to content
New issue

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

✨ Distinct webhook deployments #757

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,12 @@ GOVULNCHECK := $(TOOLS_BIN_DIR)/govulncheck
KIND := $(TOOLS_BIN_DIR)/kind

# Allow overriding manifest generation destination directory
MANIFEST_ROOT ?= config
CRD_ROOT ?= $(MANIFEST_ROOT)/crd/bases
EXTERNAL_CRD_ROOT ?= $(MANIFEST_ROOT)/crd/external-crds
WEBHOOK_ROOT ?= $(MANIFEST_ROOT)/webhook
RBAC_ROOT ?= $(MANIFEST_ROOT)/rbac
MANIFEST_ROOT ?= config
CRD_ROOT ?= $(MANIFEST_ROOT)/crd/bases
EXTERNAL_CRD_ROOT ?= $(MANIFEST_ROOT)/crd/external-crds
WEBHOOK_ROOT ?= $(MANIFEST_ROOT)/webhooks
ADMISSION_WEBHOOK_ROOT ?= $(WEBHOOK_ROOT)/admission
RBAC_ROOT ?= $(MANIFEST_ROOT)/rbac

# Image URL to use all building/pushing image targets
IMAGE ?= vmoperator-controller
Expand Down Expand Up @@ -332,7 +333,7 @@ generate-manifests: ## Generate manifests e.g. CRD, RBAC etc.
output:none
$(CONTROLLER_GEN) \
paths=./webhooks/... \
output:webhook:dir=$(WEBHOOK_ROOT) \
output:webhook:dir=$(ADMISSION_WEBHOOK_ROOT) \
webhook
$(CONTROLLER_GEN) \
paths=./controllers/... \
Expand Down
12 changes: 7 additions & 5 deletions config/certmanager/certificate.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# The following manifests contain a self-signed issuer CR and a certificate CR.
# More document can be found at https://docs.cert-manager.io
# WARNING: Targets CertManager 0.11 check https://docs.cert-manager.io/en/latest/tasks/upgrading/index.html for breaking changes
apiVersion: cert-manager.io/v1
kind: Issuer
metadata:
Expand All @@ -15,11 +15,13 @@ metadata:
name: serving-cert
namespace: system
spec:
# WEBHOOK_SERVICE_NAME_PLACEHOLDER and WEBHOOK_SERVICE_NAMESPACE_PLACEHOLDER will be substituted by kustomize
dnsNames:
- WEBHOOK_SERVICE_NAME_PLACEHOLDER.WEBHOOK_SERVICE_NAMESPACE_PLACEHOLDER.svc
- WEBHOOK_SERVICE_NAME_PLACEHOLDER.WEBHOOK_SERVICE_NAMESPACE_PLACEHOLDER.svc.cluster.local
- ADMISSION_WEBHOOK_SERVICE_NAME_PLACEHOLDER.ADMISSION_WEBHOOK_SERVICE_NAMESPACE_PLACEHOLDER.svc
- ADMISSION_WEBHOOK_SERVICE_NAME_PLACEHOLDER.ADMISSION_WEBHOOK_SERVICE_NAMESPACE_PLACEHOLDER.svc.cluster.local
- CONVERSION_WEBHOOK_SERVICE_NAME_PLACEHOLDER.CONVERSION_WEBHOOK_SERVICE_NAMESPACE_PLACEHOLDER.svc
- CONVERSION_WEBHOOK_SERVICE_NAME_PLACEHOLDER.CONVERSION_WEBHOOK_SERVICE_NAMESPACE_PLACEHOLDER.svc.cluster.local
issuerRef:
kind: Issuer
name: selfsigned-issuer
secretName: webhook-server-cert # this secret will not be prefixed, since it's not managed by kustomize
# This secret will not be prefixed, since it not managed by kustomize.
secretName: webhook-server-cert
6 changes: 3 additions & 3 deletions config/certmanager/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- certificate.yaml

configurations:
- kustomizeconfig.yaml

resources:
- certificate.yaml
23 changes: 23 additions & 0 deletions config/default/admission_webhook_health_and_metrics.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: admission-webhook
namespace: system
spec:
template:
spec:
containers:
- name: manager
args:
- "--enable-leader-election=false"
- "--health-addr=127.0.0.1:9446"
- "--metrics-addr=0"
- "--profiler-address=0"
ports:
- containerPort: 9446
name: health-probe
protocol: TCP
readinessProbe:
httpGet:
path: /readyz
port: health-probe
23 changes: 23 additions & 0 deletions config/default/conversion_webhook_health_and_metrics.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: conversion-webhook
namespace: system
spec:
template:
spec:
containers:
- name: manager
args:
- "--enable-leader-election=false"
- "--health-addr=127.0.0.1:9447"
- "--metrics-addr=0"
- "--profiler-address=0"
ports:
- containerPort: 9447
name: health-probe
protocol: TCP
readinessProbe:
httpGet:
path: /readyz
port: health-probe
39 changes: 5 additions & 34 deletions config/default/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,48 +6,19 @@ resources:
- ../manager
- ../web-console-validator
- ../rbac
- ../webhook
- ../webhooks/admission
- ../webhooks/conversion
- ../certmanager
- ../crd/external-crds/encryption.vmware.com_encryptionclasses.yaml

patches:
- path: manager_default_container_patch.yaml
- path: manager_auth_proxy_patch.yaml
- path: manager_webhook_patch.yaml
- path: manager_replicas_patch.yaml
- path: manager_pod_info_patch.yaml
- path: manager_tolerations_patch.yaml
- path: manager_update_strategy_patch.yaml
- path: manager_leader_election_id_patch.yaml
- path: manager_max_concurrent_reconciles_patch.yaml

replacements:
- source:
fieldPath: spec.template.spec.containers.[name=manager].ports.[name=webhook-server].containerPort
group: apps
version: v1
kind: Deployment
namespace: system
name: controller-manager
targets:
- select:
group: apps
version: v1
kind: Deployment
namespace: system
name: controller-manager
fieldPaths:
- spec.template.spec.containers.[name=manager].env.[name=WEBHOOK_SERVICE_CONTAINER_PORT].value
- source:
fieldPath: spec.template.spec.containers.[name=manager].volumeMounts.[name=cert].mountPath
group: apps
version: v1
kind: Deployment
namespace: system
name: controller-manager
targets:
- select:
kind: Deployment
name: controller-manager
fieldPaths:
- spec.template.spec.containers.[name=manager].env.[name=WEBHOOK_SECRET_VOLUME_MOUNT_PATH].value
- path: manager_health_and_metrics.yaml
- path: admission_webhook_health_and_metrics.yaml
- path: conversion_webhook_health_and_metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ spec:
- name: manager
args:
- "--metrics-addr=127.0.0.1:8080"
- "--health-addr=127.0.0.1:9445"
ports:
- containerPort: 9445
name: health-probe
protocol: TCP
readinessProbe:
httpGet:
path: /readyz
port: health-probe
- name: kube-rbac-proxy
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0
args:
Expand Down
1 change: 1 addition & 0 deletions config/local/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- ./vmoperator/

Expand Down
3 changes: 3 additions & 0 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- manager.yaml
5 changes: 4 additions & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ spec:
requests:
cpu: 100m
memory: 75Mi
env:
- name: VMOP_CONTAINER_TYPE
value: controller-manager
nodeSelector:
node-role.kubernetes.io/control-plane: ""
terminationGracePeriodSeconds: 10
terminationGracePeriodSeconds: 10
Loading