Skip to content

Commit f555a59

Browse files
authored
Fix incorrect labeling command in installation path
This mistakenly includes the term "generic" in the kubectl command when labeling a Secret. We only need the Secret name. Applies on an existing pgo-backrest-repo-config Secret. Issue: #2650
1 parent dc78e8c commit f555a59

File tree

1 file changed

+1
-1
lines changed
  • installers/ansible/roles/pgo-operator/tasks

1 file changed

+1
-1
lines changed

installers/ansible/roles/pgo-operator/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273

274274
- name: Label PGO BackRest Repo Secret
275275
command: |
276-
{{ kubectl_or_oc }} label secret generic -n {{ pgo_operator_namespace }} \
276+
{{ kubectl_or_oc }} label secret -n {{ pgo_operator_namespace }} \
277277
pgo-backrest-repo-config vendor=crunchydata
278278
when:
279279
- pgo_backrest_repo_config_result.rc == 1

0 commit comments

Comments
 (0)