-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (68 loc) · 2.05 KB
/
workflow.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Docker Build and Publish
on:
push:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
buildjob:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: login to GHCR
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.MY_GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
deployjob:
needs: buildjob
name: "Deploy to XC vk8s"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./terraform
steps:
- name: Checkout Git Repo
uses: actions/checkout@v3
with:
ref: main
- name: pull kubeconfig from secret
run: |
echo "${{ secrets.VK8S_KUBECONFIG }}" > kubeconfig.yaml
- name: cat kubeconfig from secret
run: cat kubeconfig.yaml
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.2.4
- name: Terraform Init
id: init1
run: |
terraform init \
-backend-config="access_key=${{ secrets.AZURE_BACKEND_KEY }}"
- name: Terraform Validate
id: validate1
run: terraform validate
- name: Terraform Apply
id: apply1
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: terraform apply -auto-approve -no-color -input=false
env:
VES_P12_PASSWORD: ${{ secrets.VES_P12_PASSWORD }}
# TF_LOG: debug