Adding Admission Webhooks to an Ansible-based Operator

For general background on what admission webhooks are, why to use them, and how to build them, please refer to the official Kubernetes documentation on Extensible Admission Controllers

This guide will assume that you understand the above content, and that you have an existing admission webhook server. You will likely need to make a few modifications to the webhook server container.

When integrating an admission webhook server into your Ansible-based Operator, we recommend that you deploy it as a sidecar container alongside your operator. This allows you to make use of the proxy server that the operator deploys, as well as the cache that backs it.

Ensuring the webhook server uses the caching proxy

When an Ansible-based Operator runs, it creates a Kubernetes proxy server and serves it on http://localhost:8888. This proxy server does not require any authorization, so all you need to do to make use of the proxy is ensure that your Kubernetes client is pointing at http://localhost:8888 and that it does not attempt to verify SSL. If you use the default in-cluster configuration, you will be hitting the real API server and will not get caching for free.

Deploying the webhook server

Create a new file called config/default/manager_webhook_patch.yaml with the following content (making sure to replace the image reference placeholder string):

  1. # This patch injects a sidecar container which is an admission webhook for the
  2. # controller manager.
  3. apiVersion: apps/v1
  4. kind: Deployment
  5. metadata:
  6. name: controller-manager
  7. namespace: system
  8. spec:
  9. template:
  10. spec:
  11. containers:
  12. - name: webhook
  13. # Replace this with the built image name
  14. image: "REPLACE_WEBHOOK_IMAGE"
  15. volumeMounts:
  16. - mountPath: /etc/tls/
  17. name: webhook-cert
  18. volumes:
  19. # This assumes there is a secret called webhook-cert containing TLS certificates
  20. # Projects like cert-manager can create these certificates
  21. - name: webhook-cert
  22. secret:
  23. secretName: webhook-cert

Then, update config/default/kustomization.yaml to include this patch:

  1. patchesStrategicMerge:
  2. - manager_webhook_patch.yaml # Add this line

Now, when deploying the operator with make deploy, your webhook server will run alongside the operator, but Kubernetes will not yet call the webhooks before resources can be created. In order to let Kubernetes know about your webhooks, you must create specific API resources.

Making Kubernetes call your webhooks

In order to make your webhooks callable at all, first you must create a Service that points at your webhook server. Below is a sample service that creates a Service named my-operator-webhook, that will send traffic on port 443 to port 5000 in a Pod that matches the selector name=my-operator. Modify these values to match your environment.

  1. apiVersion: v1
  2. kind: Service
  3. metadata:
  4. name: my-operator-webhook
  5. spec:
  6. ports:
  7. - name: webhook
  8. port: 443
  9. protocol: TCP
  10. # Change targetPort to match the port your server is listening on
  11. targetPort: 5000
  12. selector:
  13. # Change this selector to match the labels on your operator pod
  14. name: my-operator
  15. type: ClusterIP

Now that you have a Service directing traffic to your webhook server, you will need to create MutatingWebhookConfiguration or ValidatingWebhookConfiguration objects (depending on what type of webhook you have deployed), which will tell Kubernetes to send certain API requests through your webhooks before writing to etcd.

Below are examples of both MutatingWebhookConfiguration and ValidatingWebhookConfiguration objects, which will tell Kubernetes to call the my-operator-webhook service when samples.example.com Example resources are created. The mutating webhook is served on the /mutating path in my example webhook server, and the validating webhook is served on /validating. Update these values as needed to reflect your environment and desired behavior. These objects are thoroughly documented in the official Kubernetes documentation on Extensible Admission Controllers

  1. ---
  2. apiVersion: admissionregistration.k8s.io/v1
  3. kind: MutatingWebhookConfiguration
  4. metadata:
  5. name: mutating.example.com
  6. webhooks:
  7. - name: "mutating.example.com"
  8. rules:
  9. - apiGroups: ["samples.example.com"]
  10. apiVersions: ["*"]
  11. operations: ["CREATE"]
  12. resources: ["examples"]
  13. scope: "Namespaced"
  14. clientConfig:
  15. service:
  16. # Replace this with the namespace your service is in
  17. namespace: REPLACE_NAMESPACE
  18. name: my-operator-webhook
  19. path: /mutating
  20. admissionReviewVersions: ["v1"]
  21. sideEffects: None
  22. ---
  23. apiVersion: admissionregistration.k8s.io/v1
  24. kind: ValidatingWebhookConfiguration
  25. metadata:
  26. name: validating.example.com
  27. webhooks:
  28. - name: validating.example.com
  29. rules:
  30. - apiGroups: ["samples.example.com"]
  31. apiVersions: ["*"]
  32. operations: ["CREATE"]
  33. resources: ["examples"]
  34. scope: "Namespaced"
  35. clientConfig:
  36. service:
  37. # Replace this with the namespace your service is in
  38. namespace: REPLACE_NAMESPACE
  39. name: my-operator-webhook
  40. path: /validating
  41. admissionReviewVersions: ["v1"]
  42. failurePolicy: Fail
  43. sideEffects: None

If these resources are configured properly you will now have an admissions webhook that can reject or mutate incoming resources before they are written to the Kubernetes database.

Summary

To deploy an existing admissions webhook to validate or mutate your Kubernetes resources alongside an Ansible-based Operator, you must

  1. Configure your admissions webhook to use the proxy server running on http://localhost:8888 in the operator pod
  2. Add the webhook container to your operator deployment
  3. Create a Service pointing to your webhook
  4. Make sure your webhook is reachable via the Service over https
  5. Create MutatingWebhookConfiguration or ValidatingWebhookConfiguration mapping the resource you want to mutate/validate to the Service you created

Last modified July 29, 2020: website/content/en/docs/building-operators: update legacy references (#3575) (0e1ab6b8)