Changelog
- fix(build): arm64 image contains kubectl for amd64 (#311 #312)
- fix(doc): wrong binding name in HOOKS.md (#309)
See milestone 1.0.3.
Installation and usage
Create an image with your hooks added into the /hooks
directory:
Dockerfile
FROM flant/shell-operator:v1.0.3
ADD pods-hook.sh /hooks
Push to registry, create rbac and create a Pod or Deployment:
apiVersion: v1
kind: Pod
metadata:
name: shell-operator
spec:
containers:
- name: shell-operator
image: registry.mycompany.com/shell-operator:monitor-pods
imagePullPolicy: Always
serviceAccountName: monitor-pods-acc
Check README for more information and /examples for the inspiration.