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. The sidecar will be defined in the deploy/operator.yaml and it will look like:

  1. # This deploys the webhook
  2. - name: webhook
  3. # Replace this with the built image name
  4. image: "REPLACE_WEBHOOK_IMAGE"
  5. imagePullPolicy: "Always"
  6. volumeMounts:
  7. - mountPath: /etc/tls/
  8. name: webhook-cert

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

To deploy the webhook server as a sidecar alongside your operator, all you need to do is add the container specification to your deploy/operator.yaml. You may also need to add a volume for mounting in TLS secrets, as your webhook server is required to have a valid SSL configuration. Below is a sample updated container specification that deploys a webhook:

  1. containers:
  2. - name: my-operator
  3. # Replace this with the built image name
  4. image: "REPLACE_IMAGE"
  5. imagePullPolicy: "Always"
  6. volumeMounts:
  7. - mountPath: /tmp/ansible-operator/runner
  8. name: runner
  9. env:
  10. - name: WATCH_NAMESPACE
  11. valueFrom:
  12. fieldRef:
  13. fieldPath: metadata.namespace
  14. - name: POD_NAME
  15. valueFrom:
  16. fieldRef:
  17. fieldPath: metadata.name
  18. - name: OPERATOR_NAME
  19. value: "validating-operator"
  20. - name: ANSIBLE_GATHERING
  21. value: explicit
  22. # This deploys the webhook
  23. - name: webhook
  24. # Replace this with the built image name
  25. image: "REPLACE_WEBHOOK_IMAGE"
  26. imagePullPolicy: "Always"
  27. volumeMounts:
  28. - mountPath: /etc/tls/
  29. name: webhook-cert
  30. volumes:
  31. - name: runner
  32. emptyDir: {}
  33. # This assumes there is a secret called webhook-cert containing TLS certificates
  34. # Projects like cert-manager can create these certificates
  35. - name: webhook-cert
  36. secret:
  37. secretName: webhook-cert

This will run your webhook server 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 June 3, 2020: [v0.18.x] docs: fix v1.17 k8s doc links (#3166) (d576b2eb)