Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
Release v0.5.2, update readme and manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
lrgar committed Nov 15, 2019
1 parent bcb6d8f commit 92325e2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Depending of the version of the Dynatrace OneAgent Operator, it supports the fol
| Dynatrace OneAgent Operator version | Kubernetes | OpenShift Container Platform |
| ----------------------------------- | ---------- | ---------------------------- |
| master | 1.11+ | 3.11+ |
| v0.5.1 | 1.11+ | 3.11+ |
| v0.5.2 | 1.11+ | 3.11+ |
| v0.4.2 | 1.11+ | 3.11+ |
| v0.3.1 | 1.11-1.15 | 3.11+ |
| v0.2.1 | 1.9-1.15 | 3.9+ |
Expand All @@ -45,7 +45,7 @@ Create neccessary objects and observe its logs:
#### Kubernetes
```sh
$ kubectl create namespace dynatrace
$ kubectl apply -f https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.1/deploy/kubernetes.yaml
$ kubectl apply -f https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.2/deploy/kubernetes.yaml
$ kubectl -n dynatrace logs -f deployment/dynatrace-oneagent-operator
```

Expand All @@ -67,7 +67,7 @@ $ oc -n dynatrace create secret docker-registry redhat-connect-sso --docker-serv
Finally, for both 4.x and 3.11, we apply the `openshift.yaml` manifest to deploy the Operator:

```sh
$ oc apply -f https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.1/deploy/openshift.yaml
$ oc apply -f https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.2/deploy/openshift.yaml
$ oc -n dynatrace logs -f deployment/dynatrace-oneagent-operator
```

Expand Down Expand Up @@ -126,7 +126,7 @@ spec:
# VirtualService and ServiceEntries objects to allow access to the Dynatrace cluster from the agent.
#enableIstio: false
```
Save the snippet to a file or use [./deploy/cr.yaml](https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.1/deploy/cr.yaml) from this repository and adjust its values accordingly.
Save the snippet to a file or use [./deploy/cr.yaml](https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.2/deploy/cr.yaml) from this repository and adjust its values accordingly.
A secret holding tokens for authenticating to the Dynatrace cluster needs to be created upfront.
Create access tokens of type *Dynatrace API* and *Platform as a Service* and use its values in the following commands respectively.
For assistance please refere to [Create user-generated access tokens](https://www.dynatrace.com/support/help/get-started/introduction/why-do-i-need-an-access-token-and-an-environment-id/#create-user-generated-access-tokens).
Expand Down Expand Up @@ -155,13 +155,13 @@ Remove OneAgent custom resources and clean-up all remaining OneAgent Operator sp
#### Kubernetes
```sh
$ kubectl delete -n dynatrace oneagent --all
$ kubectl delete -f https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.1/deploy/kubernetes.yaml
$ kubectl delete -f https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.2/deploy/kubernetes.yaml
```

#### OpenShift
```sh
$ oc delete -n dynatrace oneagent --all
$ oc delete -f https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.1/deploy/openshift.yaml
$ oc delete -f https://raw.githubusercontent.com/Dynatrace/dynatrace-oneagent-operator/v0.5.2/deploy/openshift.yaml
```

## Known Limitation
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ spec:
spec:
containers:
- name: dynatrace-oneagent-operator
image: quay.io/dynatrace/dynatrace-oneagent-operator:v0.5.1
image: quay.io/dynatrace/dynatrace-oneagent-operator:v0.5.2
command:
- dynatrace-oneagent-operator
imagePullPolicy: Always
Expand Down
2 changes: 1 addition & 1 deletion deploy/openshift.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ spec:
spec:
containers:
- name: dynatrace-oneagent-operator
image: registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator:v0.5.1
image: registry.connect.redhat.com/dynatrace/dynatrace-oneagent-operator:v0.5.2
command:
- dynatrace-oneagent-operator
imagePullPolicy: Always
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "v0.5.1"
Version = "v0.5.2"
)

0 comments on commit 92325e2

Please sign in to comment.