Try to use service account token inside Forgejo action
Some checks failed
/ blog-pim (push) Failing after 2m0s
Some checks failed
/ blog-pim (push) Failing after 2m0s
This commit is contained in:
parent
1f24b5815b
commit
614e33c583
1 changed files with 8 additions and 2 deletions
|
@ -4,8 +4,14 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: git.kun.is/home/forgejo-nix-action:687d16c49ea7936068bac64ec68c480a9d681962
|
image: git.kun.is/home/forgejo-nix-action:687d16c49ea7936068bac64ec68c480a9d681962
|
||||||
options: "-v /var/run/secrets/kubernetes.io/serviceaccount:/testje"
|
options: "-v /var/run/secrets/kubernetes.io/serviceaccount:/var/run/secrets/kubernetes.io/serviceaccount"
|
||||||
steps:
|
steps:
|
||||||
- name: Clone repository
|
- name: Clone repository
|
||||||
run: git clone ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git src
|
run: git clone ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git src
|
||||||
- run: ls -alh /testje
|
- run: ls -alh /var/run/secrets/kubernetes.io/serviceaccount
|
||||||
|
- run: nix run nixpkgs#kubectl -- config set-cluster my-cluster --server=https://kubernetes.default.svc
|
||||||
|
- run: nix run nixpkgs#kubectl -- config set-credentials my-service-account --token=$(cat /var/run/secrets/kubernetes.io/serviceaccount/token)
|
||||||
|
- run: nix run nixpkgs#kubectl -- config set-context my-context --cluster=my-cluster --user=my-service-account
|
||||||
|
- run: nix run nixpkgs#kubectl -- config use-context my-context
|
||||||
|
- run: nix run nixpkgs#kubectl -- get pods
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue