forked from k8s-operatorhub/community-operators
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator dynatrace-operator (0.11.0)
- Loading branch information
1 parent
c55fe32
commit 5094365
Showing
9 changed files
with
5,400 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM scratch | ||
|
||
# Core 0.11.0 labels. | ||
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha | ||
LABEL operators.operatorframework.io.0.11.0.mediatype.v1=registry+v1 | ||
LABEL operators.operatorframework.io.0.11.0.manifests.v1=manifests/ | ||
LABEL operators.operatorframework.io.0.11.0.metadata.v1=metadata/ | ||
LABEL operators.operatorframework.io.0.11.0.package.v1=dynatrace-operator | ||
LABEL operators.operatorframework.io.0.11.0.channels.v1=alpha | ||
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.16.0+git | ||
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1 | ||
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3 | ||
|
||
|
||
# Copy files to locations specified by labels. | ||
COPY manifests /manifests/ | ||
COPY metadata /metadata/ |
19 changes: 19 additions & 0 deletions
19
...ests/dynatrace-dynakube-oneagent-privileged_rbac.authorization.k8s.io_v1_clusterrole.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/component: oneagent | ||
app.kubernetes.io/name: dynatrace-operator | ||
app.kubernetes.io/version: 0.11.0 | ||
name: dynatrace-dynakube-oneagent-privileged | ||
rules: | ||
- apiGroups: | ||
- security.openshift.io | ||
resourceNames: | ||
- host | ||
- privileged | ||
resources: | ||
- securitycontextconstraints | ||
verbs: | ||
- use |
17 changes: 17 additions & 0 deletions
17
...natrace-dynakube-oneagent-privileged_rbac.authorization.k8s.io_v1_clusterrolebinding.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/component: oneagent | ||
app.kubernetes.io/name: dynatrace-operator | ||
app.kubernetes.io/version: 0.11.0 | ||
name: dynatrace-dynakube-oneagent-privileged | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: dynatrace-dynakube-oneagent-privileged | ||
subjects: | ||
- kind: ServiceAccount | ||
name: dynatrace-dynakube-oneagent-privileged | ||
namespace: dynatrace |
10 changes: 10 additions & 0 deletions
10
...e-operator/0.11.0/manifests/dynatrace-dynakube-oneagent-privileged_v1_serviceaccount.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
apiVersion: v1 | ||
automountServiceAccountToken: false | ||
kind: ServiceAccount | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/component: oneagent | ||
app.kubernetes.io/name: dynatrace-operator | ||
app.kubernetes.io/version: 0.11.0 | ||
name: dynatrace-dynakube-oneagent-privileged |
1,742 changes: 1,742 additions & 0 deletions
1,742
operators/dynatrace-operator/0.11.0/manifests/dynatrace-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
.../dynatrace-operator/0.11.0/manifests/dynatrace-webhook_policy_v1_poddisruptionbudget.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
apiVersion: policy/v1 | ||
kind: PodDisruptionBudget | ||
metadata: | ||
name: dynatrace-webhook | ||
spec: | ||
minAvailable: 1 | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/component: webhook |
20 changes: 20 additions & 0 deletions
20
operators/dynatrace-operator/0.11.0/manifests/dynatrace-webhook_v1_service.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/component: webhook | ||
app.kubernetes.io/name: dynatrace-operator | ||
app.kubernetes.io/version: 0.11.0 | ||
name: dynatrace-webhook | ||
spec: | ||
ports: | ||
- port: 443 | ||
protocol: TCP | ||
targetPort: server-port | ||
selector: | ||
app.kubernetes.io/component: webhook | ||
app.kubernetes.io/name: dynatrace-operator | ||
app.kubernetes.io/version: 0.11.0 | ||
status: | ||
loadBalancer: {} |
3,554 changes: 3,554 additions & 0 deletions
3,554
operators/dynatrace-operator/0.11.0/manifests/dynatrace.com_dynakubes.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
operators/dynatrace-operator/0.11.0/metadata/annotations.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
annotations: | ||
# Core bundle annotations. | ||
operators.operatorframework.io.bundle.mediatype.v1: registry+v1 | ||
operators.operatorframework.io.bundle.manifests.v1: manifests/ | ||
operators.operatorframework.io.bundle.metadata.v1: metadata/ | ||
operators.operatorframework.io.bundle.package.v1: dynatrace-operator | ||
operators.operatorframework.io.bundle.channels.v1: alpha | ||
operators.operatorframework.io.metrics.builder: operator-sdk-v1.16.0+git | ||
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1 | ||
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3 | ||
operators.operatorframework.io.bundle.channel.default.v1: alpha | ||
|