fix: added securityContext.runAsUser:null to argo-cd helm chart so that in okd user group will be randomly assigned within the uid range for the designated namespace #156
No reviewers
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: NationTech/harmony#156
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix/argo-cd-redis"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -94,7 +86,6 @@ impl<T: Topology + K8sclient + Ingress + PrometheusApplicationMonitoring<RHOBObs
self.ensure_grafana_operator().await?;
self.install_prometheus(inventory, topology, &client)
.await?;
self.install_client_kube_metrics().await?;
Is this deletion expected? Did it have any impact on the issue? Is it leaving any deadcode behind (is
install_client_kube_metrics
still used)?This deletion was not expected, I was testing to see if having the namespaced kube-metrics deployment was necessary while using the cluster observability operator. With out current set up it is, since we deploy a service monitor that watches the kube-metrics, rather than a pod monitor or similar for each deployment/service that is created.
LGTM
Just a quick suggestion: for the PR title, try to describe what you are fixing (e.g.
fix(argo-cd): auto assign user group for namespace
) and then in your description add more details (what was the issue/ref to the issue, how you fixed it and why you did it that way - if applicable). No need to be too verbose though.