-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathkuttl-test.yaml
82 lines (74 loc) · 3.32 KB
/
kuttl-test.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
# (c) Copyright [2021-2024] Open Text.
# Licensed 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.
apiVersion: kuttl.dev/v1beta1
kind: TestSuite
kindNodeCache: true
# Each testcase will delete its own namespace if it is successful. This
# allows us to collect scrutinize for all of the failed tests.
skipDelete: true
# These are overridden when running kuttl from the Makefile
testDirs:
- tests/e2e-leg-1
- tests/e2e-leg-1-at-only
- tests/e2e-leg-2
- tests/e2e-leg-2-at-only
- tests/e2e-leg-3
- tests/e2e-leg-3-at-only
- tests/e2e-leg-4
- tests/e2e-leg-4-vdb-gen
- tests/e2e-leg-5
- tests/e2e-leg-5-at-only
- tests/e2e-leg-6
- tests/e2e-leg-6-revivedb
- tests/e2e-leg-7
- tests/e2e-leg-8-offline
- tests/e2e-leg-8-online
- tests/e2e-leg-9
- tests/e2e-leg-10
- tests/e2e-leg-11
- tests/e2e-leg-12
- tests/e2e-udx
- tests/e2e-server-upgrade
- tests/e2e-server-upgrade-at-only
- tests/e2e-operator-upgrade-overlays
parallel: 2
timeout: 600
commands:
# Create the kustomize overlay files to override the image, endpoint, etc.
- command: scripts/setup-kustomize.sh
# make dependencies
- command: make config-transformer vdb-gen install-cert-manager
- command: kubectl stern --version
# Ensure the log output directory exists
- command: mkdir -p int-tests-output
# We use stern to collect the pod output of any test that creates a pod with
# the 'stern=include' label. By default, the output of this is stored in a
# file in int-tests-output/
- script: exec kubectl stern --selector stern=include --all-namespaces --timestamps --container-state terminated --max-log-requests 100 > int-tests-output/ancillary.log
background: true
# We have another stern to collect the output for all of the operators.
- script: exec kubectl stern --selector app.kubernetes.io/name=verticadb-operator --all-namespaces --max-log-requests 100 > int-tests-output/verticadb-operator.log
background: true
# And another stern to collect the output from any vertica pods.
- script: exec kubectl stern --selector app.kubernetes.io/name=vertica --all-namespaces --timestamps --max-log-requests 100 > int-tests-output/vertica.log
background: true
# Start the operator. Some test steps expects the operator to be in a
# specific namespace. When deploying the operator at the namespace scope, we
# only deploy the webhook here.
- script: make undeploy || true
- script: if [ "$CONTROLLERS_SCOPE" != "namespace" ]; then NAMESPACE=verticadb-operator make deploy; fi
- script: if [ "$CONTROLLERS_SCOPE" = "namespace" ]; then NAMESPACE=verticadb-operator make deploy-webhook; fi
- script: make undeploy-prometheus || true
- script: if [ "$NEED_PROMETHEUS" = "true" ]; then make deploy-prometheus; fi
- script: make undeploy-prometheus-adapter || true
- script: if [ "$NEED_PROMETHEUS" = "true" ]; then make deploy-prometheus-adapter; fi