Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ROX-20736: move observability to infra nodes #1454

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
"filename": "dp-terraform/helm/rhacs-terraform/charts/observability/templates/01-operator-06-cr.yaml",
"hashed_secret": "3e513f12b341ed3327bea645a728401b5d0f9ddb",
"is_verified": false,
"line_number": 15
"line_number": 26
}
],
"dp-terraform/helm/rhacs-terraform/charts/secured-cluster/init-bundle.yaml": [
Expand Down Expand Up @@ -564,5 +564,5 @@
}
]
},
"generated_at": "2023-11-06T14:09:00Z"
"generated_at": "2023-11-09T08:04:42Z"
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ metadata:
name: observability-stack
namespace: {{ include "observability.namespace" . }}
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: node-role.kubernetes.io/infra
operator: Exists
tolerations:
- key: node-role.kubernetes.io/infra
operator: Exists
effect: NoSchedule
# The cluster ID is added as a label to all metrics when interacting with external services.
clusterId: {{ .Values.clusterName | quote }}
configurationSelector:
Expand Down
Loading