Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 744 Bytes

github-secrets.md

File metadata and controls

25 lines (20 loc) · 744 Bytes

Configuring Github Application Secrets

The process of creating a GitHub application is explained in Pipelines-as-Code documentation. The same secret described there, should be deployed to the build-service and integration-service namespaces as well.

⚙️ Repeat the kubectl create secret command described there for the pipelines-as-code namespace, also for those namespace:

kubectl -n pipelines-as-code create secret generic pipelines-as-code-secret \
...
kubectl -n build-service create secret generic pipelines-as-code-secret \
...
kubectl -n integration-service create secret generic pipelines-as-code-secret \
...