-
Notifications
You must be signed in to change notification settings - Fork 95
134 lines (114 loc) · 4.72 KB
/
nightly_redpanda_tip.yaml
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This is to test only the Redpanda Chart Nightly
name: Nightly - Lint/Test Redpanda-Chart With Nightly Redpanda
on:
schedule:
- cron: '0 2 * * 1-5' # 01:00 AM UTC Monday - Friday
workflow_dispatch: {}
jobs:
test-redpanda-nightly:
name: Run ct tests for ci values matching ${{ matrix.testvaluespattern }} for Redpanda nightly build
strategy:
matrix:
testvaluespattern:
- '0[1-3]*'
- '0[4-6]*'
- '0[7-9]*'
- '1[0-2]*'
- '1[3-5]*'
fail-fast: true
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: |
git checkout main
git checkout -
- name: Set up for matrix
run: |
echo bash -O extglob -c "rm -v charts/redpanda/ci/!(${{ matrix.testvaluespattern }})"
bash -O extglob -c "rm -v charts/redpanda/ci/!(${{ matrix.testvaluespattern }})"
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.4'
- run: go install github.com/joejulian/docker-tag-list@latest
- name: Get latest nightly tag
id: latestTag
run: |
echo "TAG=$(
docker-tag-list -c '~0.0.0-0' --latest -r redpandadata/redpanda-nightly | sed 's/-a..64$//'
)" >> $GITHUB_OUTPUT
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.11.1
- name: Set up chart-testing
uses: joejulian/[email protected]
with:
version: v3.8.0-1
- name: Create kind cluster
uses: helm/[email protected]
with:
config: .github/kind.yaml
- name: Check kind config worked
run: kubectl get nodes
- name: Annotate nodes for rack awareness
run: .github/annotate_kind_nodes.sh chart-testing
#===== Required Test Files === start
- name: Create tls helm templates
run: |
.github/create_tls.sh "random-domain"
- name: Create sasl secret templates
run: |
.github/create-sasl-secret.sh "some-users"
- name: Move files to redpanda template dir
run: |
mv external-tls-secret.yaml charts/redpanda/templates/
cp .github/external-service.yaml charts/redpanda/templates/
mv some-users-updated.yaml charts/redpanda/templates
#===== Required Test Files === end
- name: install cert-manager
run: |
helm repo add jetstack https://charts.jetstack.io &&
helm install cert-manager --namespace cert-manager \
--create-namespace --version v1.11.0 jetstack/cert-manager \
--set installCRDs=true --wait --wait-for-jobs
- name: install prometheus-operator
run: |
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts &&
helm install prometheus prometheus-community/kube-prometheus-stack \
--namespace prometheus --create-namespace \
--set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false \
--set nodeExporter.enabled=false \
--set grafana.enabled=false --set kubeStateMetrics.enabled=false --set alertmanager.enabled=false \
--wait --wait-for-jobs
- name: install metallb
run: |
helm repo add metallb https://metallb.github.io/metallb &&
helm install metallb metallb/metallb -n metallb-system \
--create-namespace --version 0.13.10 --wait --wait-for-jobs
- name: apply metallb resources
run: |
kubectl -n metallb-system apply -f .github/metallb-config.yaml
- name: Run chart-testing install
run: |
ct install \
--github-groups \
--config .github/ct-redpanda.yaml \
--helm-extra-set-args="--set=image.tag=${{ steps.latestTag.outputs.TAG }} --set=image.repository=redpandadata/redpanda-nightly" \
--skip-missing-values