forked from GeoNode/geonode-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (59 loc) · 1.98 KB
/
k8s-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Deploy to Kubernetes
on:
push:
branches: ["development", "k8s-deploy"]
pull_request:
branches: ["development"]
jobs:
deploy:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
NAMESPACE: "gn-demo-${{ github.head_ref || github.ref_name }}"
KUBECONFIG: "${{ github.workspace }}/.kube/config"
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Namespace safety check
run: '[ "${{ env.NAMESPACE }}" = "gn-demo-development" ] || [ "${{ env.NAMESPACE }}" = "gn-demo-stable" ]'
- name: Checkout
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# - name: Build and push Docker image
# id: push
# uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
# with:
# context: .
# file: ./Dockerfile
# push: true
# tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.BRANCH_NAME }}
- name: "Write to $KUBECONFIG"
run: |
mkdir -p '${{ github.workspace }}/.kube' \
&& umask 177 \
&& echo '${{ secrets.K8S_CONFIG }}' > "$KUBECONFIG"
- run: |
kubectl version \
&& kubectl -n ${{ env.NAMESPACE }} get pods
- name: Checkout Helm chart repo
uses: actions/checkout@v4
with:
repository: geosolutions-it/geonode-k8s
path: geonode-k8s
- name: Deploy to Kubernetes
working-directory: ./geonode-k8s
run: |
ls -al \
&& helm version \
&& helm list -n ${{ env.NAMESPACE }} \
&& echo TODO