-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (61 loc) · 2.49 KB
/
Copy pathlint-test-sdc.yml
File metadata and controls
74 lines (61 loc) · 2.49 KB
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
name: Lint and Test SDC Charts
on:
pull_request:
paths:
- 'charts/sdc/**'
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Clear any existing tool cache
run: |
mv "${{ runner.tool_cache }}" "${{ runner.tool_cache }}.old"
mkdir -p "${{ runner.tool_cache }}"
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.9.2
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.3.0
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add jetstack https://charts.jetstack.io
helm repo add runix https://helm.runix.net
#helm repo add inlets oci://ghcr.io/openfaasltd
HELM_EXPERIMENTAL_OCI=1 helm dependency update charts/sdc
- name: Run chart-testing (lint)
run: ct lint --target-branch ${{ github.event.repository.default_branch }}
- name: Create kind cluster
uses: helm/kind-action@v1.2.0
if: steps.list-changed.outputs.changed == 'true'
- name: Kind cluster-info
run: |
kubectl cluster-info --context kind-chart-testing
kubectl get nodes --context kind-chart-testing
- name: Run chart-testing (install)
run: |
ct install --charts=charts/sdc --debug --helm-extra-set-args="--set=imageCredentials.username=${{ secrets.DOCKER_USERNAME }} \
--set=imageCredentials.password=${{ secrets.DOCKER_PASSWORD }} \
--set=imageCredentials.email=${{ secrets.DOCKER_EMAIL }} \
--set=imageCredentials.registry="https://index.docker.io/v1/" \
--set=imagePullSecrets[0].name="regcred" \
--set=inlets.license=${{ secrets.INLETS_LICENSE }} \
--set=agents.clientId="SuperUser99" \
--set=agents.clientSecret="$uperSecret45" \
--set=agents.endpoint="https://sdc-envname.radiantlogic.io" \
--set=hooks.post_upgrade.enabled=true \
--set=hooks.hooks_sa.enabled=true \
--set=postgresql.enabled=true" --upgrade