Skip to content

dynatrace-oneagent-operator-v0.10.2

Compare
Choose a tag to compare

Other changes

  • Removed the CustomResourceDefinition from the Helm chart
  • Added a new platform type for OpenShift 3.11 in the values file (platform:"openshift-3-11") which should be used for OpenShift 3.11 since the apiVersion of the CRD changed
  • Removed PodSecurityPolicies since they got removed with Kubernetes 1.22
  • Updated the apiVersion of the CRD from v1beta1 to v1 since v1beta1 got removed with Kubernetes 1.22

Upgrading

The Operator's helm chart can be upgraded from 0.10.1 with:

$ helm repo update
$ kubectl apply -f https://github.com/Dynatrace/dynatrace-oneagent-operator/releases/download/v0.10.2/dynatrace.com_oneagentapms.yaml
$ kubectl apply -f https://github.com/Dynatrace/dynatrace-oneagent-operator/releases/download/v0.10.2/dynatrace.com_oneagents.yaml
$ helm upgrade dynatrace-oneagent-operator dynatrace/dynatrace-oneagent-operator --reuse-values --verify

The Operator's helm chart on OpenShift 3.11 can be upgraded from 0.10.1 by changing the platform in your values.yaml to openshift-3-11 and running:

$ helm repo update
$ oc apply -f https://github.com/Dynatrace/dynatrace-oneagent-operator/releases/download/v0.10.2/dynatrace.com_oneagentapms-v1beta1.yaml
$ oc apply -f https://github.com/Dynatrace/dynatrace-oneagent-operator/releases/download/v0.10.2/dynatrace.com_oneagents-v1beta1.yaml
$ helm upgrade dynatrace-oneagent-operator dynatrace/dynatrace-oneagent-operator --values <your_values_file> --verify