v1.6.1
- Create the file config/default/manager_config_patch.yaml.
- Create the file .
Update the
config/default/kustomization.yaml
by adding the following toresources
:Update the
config/manager/kustomization.yaml
by adding:
generatorOptions:
disableNameSuffixHash: true
configMapGenerator:
- files:
- controller_manager_config.yaml
name: manager-config
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: controller
newName: quay.io/example/memcached-operator
newTag: v0.0.1
See #4701 for more details.
(ansible/v1, helm/v1) Add Role rules for leader election.
Add the rule for the apiGroups
coordination.k8s.io
and the resource leases
in config/rbac/leader_election_role.yaml:
rules:
- apiGroups:
- ""
resources:
- configmaps
- leases
See #4701 for more details.
(ansible/v1) Update Ansible collections
In your requirements.yml, change the version
field for community.kubernetes to 1.2.1
, and the version
field for operator_sdk.util
to 0.2.0
.
See #4734 for more details.
(helm/v1) Replace deprecated leader election and metrics address flags
Replace deprecated flags --enable-leader-election
and --metrics-addr
with --leader-elect
and , respectively.
See #4654 for more details.
Add the arg --health-probe-bind-address=:8081
to the config/default/manager_auth_proxy_patch.yaml
:
spec:
template:
spec:
containers:
- name: manager
args:
- "--health-probe-bind-address=:8081"
...
(ansible/v1) Explicitly set --health-probe-bind-address
in the manager’s auth proxy patch.
Add the arg --health-probe-bind-address=:6789
to the config/default/manager_auth_proxy_patch.yaml
:
See #4654 for more details.
(helm/v1, ansible/v1) Add help
target to Makefile.
Ansible/Helm projects now provide a Makefile help
target, similar to a --help
flag. You can copy and paste this target from the relevant sample’s Makefile (helm, ).
See #4660 for more details.
(ansible/v1, helm/v1) Add securityContext
‘s to your manager’s Deployment.
In config/manager/manager.yaml
, add the following security contexts:
spec:
...
template:
...
spec:
securityContext:
runAsNonRoot: true
containers:
- name: manager
securityContext:
allowPrivilegeEscalation: false
See #4655 for more details.
OLM does , so a JSON patch was added to remove this volume and mount such that OLM can itself create and manage certs for your Operator. In config/manifests/kustomization.yaml
, add the following:
#patchesJson6902:
#- target:
# group: apps
# version: v1
# kind: Deployment
# name: controller-manager
# namespace: system
# patch: |-
# # Remove the manager container's "cert" volumeMount, since OLM will create and mount a set of certs.
# # Update the indices in this path if adding or removing containers/volumeMounts in the manager's Deployment.
# - op: remove
# # Remove the "cert" volume, since OLM will create and mount a set of certs.
# # Update the indices in this path if adding or removing volumes in the manager's Deployment.
# - op: remove
# path: /spec/template/spec/volumes/0
If you have configured your operator to use webhooks, add this YAML block uncommented.
See #4623 for more details.
(go/v2, go/v3, ansible/v1, helm/v1) Add scheme, token, and TLS config to the Prometheus metrics endpoint.
The /metrics
endpoint, while specifying the https
port on the manager Pod, was not actually configured to serve over https because no tlsConfig was set. Since kube-rbac-proxy secures this endpoint as a manager sidecar, using the service account token mounted into the Pod by default corrects this problem. The changes should look like:
# config/prometheus/monitor.yaml
spec:
endpoints:
- path: /metrics
port: https
+ scheme: https
+ bearerTokenFile: /var/run/secrets/kubernetes.io/serviceaccount/token
+ tlsConfig:
+ insecureSkipVerify: true
selector:
matchLabels:
control-plane: controller-manager
See #4680 for more details.
(go/v2, go/v3, ansible/v1, helm/v1) Add opm
and catalog-build
Makefile targets
The opm
and catalog-build
Makefile targets were added so operator developers who want to create their own catalogs for their operator or add their operator’s bundle(s) to an existing catalog can do so. If this sounds like you, add the following lines to the bottom of your Makefile:
If updating a Go operator project, additionally add the following Makefile variables:
OS = $(shell go env GOOS)
ARCH = $(shell go env GOARCH)
See #4406 for more details.
(go/v2, go/v3, ansible/v1, helm/v1) Changed BUNDLE_IMG
and added IMAGE_TAG_BASE
Makefile variables
The following Makefile changes were made to allow make bundle-build bundle-push catalog-build catalog-push
and encode image repo/namespace information in the Makefile by default:
+IMAGE_TAG_BASE ?= <registry>/<operator name>
+
-BUNDLE_IMG ?= controller-bundle:$(VERSION)
+BUNDLE_IMG ?= $(IMAGE_TAG_BASE)-bundle:v$(VERSION)
For example, if IMAGE_TAG_BASE ?= foo/bar-operator
then running make bundle-build bundle-push catalog-build catalog-push
would build foo/bar-operator-bundle:v0.0.1
and foo/bar-operator-catalog:v0.0.1
then push them to the docker.io/foo
namespaced registry.
See #4406 for more details.
A non-default ServiceAccount controller-manager
is scaffolded on operator-sdk init
, to improve security for operators installed in shared namespaces. To add this ServiceAccount to your project, do the following:
# Create the ServiceAccount.
cat <<EOF > config/rbac/service_account.yaml apiVersion: v1
kind: ServiceAccount
metadata:
name: controller-manager
namespace: system
EOF
# Add it to the list of RBAC resources.
echo "- service_account.yaml" >> config/rbac/kustomization.yaml
# Update all RoleBinding and ClusterRoleBinding subjects that reference the operator's ServiceAccount.
find config/rbac -name *_binding.yaml -exec sed -i -E 's/ name: default/ name: controller-manager/g' {} \;
sed -i -E 's/([ ]+)(terminationGracePeriodSeconds:)/\1serviceAccountName: controller-manager\n\1\2/g' config/manager/manager.yaml
The changes should look like:
See for more details.