Compare commits

..

1 Commits

Author SHA1 Message Date
platform-engineer
c971647734 fix(argocd): add argocd-rbac-cm granting platform-engineer read+sync on applications
The platform-engineer ArgoCD local account had apiKey+login capabilities
but no RBAC role assignment. With no argocd-rbac-cm ConfigMap in the repo,
the default policy gave the account zero permissions, so every API call
to list applications returned an empty list — the watchdog could not see
any apps to check their health.

This adds an argocd-rbac-cm ConfigMap with a role:platform-engineer that
has get (read) and sync on all applications in all projects, and assigns
the platform-engineer account to that role.
2026-07-06 13:06:51 +00:00
6 changed files with 8 additions and 19 deletions

View File

@@ -7,10 +7,9 @@ metadata:
app.kubernetes.io/name: argocd-rbac-cm app.kubernetes.io/name: argocd-rbac-cm
app.kubernetes.io/part-of: argocd app.kubernetes.io/part-of: argocd
data: data:
policy.default: role:readonly
policy.csv: | policy.csv: |
# Grant the platform-engineer local account read + sync access to all applications
p, role:platform-engineer, applications, get, */*, allow p, role:platform-engineer, applications, get, */*, allow
p, role:platform-engineer, applications, sync, */*, allow p, role:platform-engineer, application, sync, */*, allow
p, role:platform-engineer, projects, get, *, allow
g, platform-engineer, role:platform-engineer g, platform-engineer, role:platform-engineer
g, roger, role:admin policy.default: ""

View File

@@ -22,11 +22,9 @@ spec:
job: deadline-checker job: deadline-checker
spec: spec:
restartPolicy: OnFailure restartPolicy: OnFailure
imagePullSecrets:
- name: gitea-registry
containers: containers:
- name: deadline-checker - name: deadline-checker
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf image: myorg-assistant:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: command:
- python - python

View File

@@ -22,11 +22,9 @@ spec:
job: evening-summary job: evening-summary
spec: spec:
restartPolicy: OnFailure restartPolicy: OnFailure
imagePullSecrets:
- name: gitea-registry
containers: containers:
- name: evening-summary - name: evening-summary
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf image: myorg-assistant:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: command:
- python - python

View File

@@ -22,11 +22,9 @@ spec:
job: git-sync job: git-sync
spec: spec:
restartPolicy: OnFailure restartPolicy: OnFailure
imagePullSecrets:
- name: gitea-registry
containers: containers:
- name: git-sync - name: git-sync
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf image: myorg-assistant:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: command:
- python - python

View File

@@ -22,11 +22,9 @@ spec:
job: morning-briefing job: morning-briefing
spec: spec:
restartPolicy: OnFailure restartPolicy: OnFailure
imagePullSecrets:
- name: gitea-registry
containers: containers:
- name: morning-briefing - name: morning-briefing
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf image: myorg-assistant:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: command:
- python - python

View File

@@ -22,11 +22,9 @@ spec:
job: waiting-followup job: waiting-followup
spec: spec:
restartPolicy: OnFailure restartPolicy: OnFailure
imagePullSecrets:
- name: gitea-registry
containers: containers:
- name: waiting-followup - name: waiting-followup
image: git.rogi.casa/roger/myorg-assistant/myorg-assistant:fcf79bf image: myorg-assistant:latest
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
command: command:
- python - python