-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
546f6ab
commit 5038664
Showing
4 changed files
with
46 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,7 +153,10 @@ jobs: | |
role: ${{ secrets.VAULT_ROLE }} | ||
method: kubernetes | ||
path: kubernetes-ci | ||
secrets: kv-gitlab-ci/data/github/sidecar api_token | ||
secrets: | | ||
kv-gitlab-ci/data/github/sidecar api_token ; | ||
kv-gitlab-ci/data/github/shared/dockerhub-creds user | DOCKERHUB_USER ; | ||
kv-gitlab-ci/data/github/shared/dockerhub-creds password | DOCKERHUB_PASSWORD ; | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -162,6 +165,7 @@ jobs: | |
|
||
- name: Create cluster | ||
run: | | ||
echo ${DOCKERHUB_PASSWORD} | docker login -u ${DOCKERHUB_USER} --password-stdin | ||
kind create cluster \ | ||
--config ${GITHUB_WORKSPACE}/helm/test/kind/kind.yaml \ | ||
--image kindest/node:v${{ matrix.kubeVersion }} \ | ||
|
@@ -170,6 +174,11 @@ jobs: | |
kubectl cluster-info | ||
kubectl wait --for=condition=Ready pods --all --timeout=180s -n kube-system | ||
echo "current-context:" $(kubectl config current-context) | ||
echo "[test-env] creating secret docker-registry ..." | ||
kubectl create secret docker-registry dockerhub-secret \ | ||
--docker-username="${DOCKERHUB_USER}" \ | ||
--docker-password="${DOCKERHUB_PASSWORD}" \ | ||
[email protected] | ||
- name: Load cache | ||
if: ${{ inputs.load_artifact }} | ||
|
@@ -227,7 +236,10 @@ jobs: | |
role: ${{ secrets.VAULT_ROLE }} | ||
method: kubernetes | ||
path: kubernetes-ci | ||
secrets: kv-gitlab-ci/data/github/sidecar api_token | WALLARM_API_TOKEN | ||
secrets: | | ||
kv-gitlab-ci/data/github/sidecar api_token | WALLARM_API_TOKEN ; | ||
kv-gitlab-ci/data/github/shared/dockerhub-creds user | DOCKERHUB_USER ; | ||
kv-gitlab-ci/data/github/shared/dockerhub-creds password | DOCKERHUB_PASSWORD ; | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -236,8 +248,14 @@ jobs: | |
|
||
- name: Create cluster | ||
run: | | ||
echo ${DOCKERHUB_PASSWORD} | docker login -u ${DOCKERHUB_USER} --password-stdin | ||
kind create cluster --image kindest/node:v1.28.7 | ||
kubectl wait --for=condition=Ready pods --all --timeout=180s -n kube-system | ||
echo "[test-env] creating secret docker-registry ..." | ||
kubectl create secret docker-registry dockerhub-secret \ | ||
--docker-username="${DOCKERHUB_USER}" \ | ||
--docker-password="${DOCKERHUB_PASSWORD}" \ | ||
[email protected] | ||
- name: Load cache | ||
if: ${{ inputs.load_artifact }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,20 @@ CT_NAMESPACE="ct" | |
SECRET_NAME="wallarm-api-token" | ||
SECRET_KEY="token" | ||
|
||
|
||
# This will prevent the secret for index.docker.io from being used if the DOCKERHUB_USER is not set. | ||
if [ "${DOCKERHUB_USER:-false}" = "false" ]; then | ||
DOCKERHUB_REGISTRY_SERVER="fake_docker_registry_server" | ||
fi | ||
|
||
DOCKERHUB_SECRET_NAME="dockerhub-secret" | ||
DOCKERHUB_USER="${DOCKERHUB_USER:-fake_user}" | ||
DOCKERHUB_PASSWORD="${DOCKERHUB_PASSWORD:-fake_password}" | ||
|
||
HELM_EXTRA_ARGS="--timeout 180s" | ||
HELM_EXTRA_SET_ARGS="--set config.wallarm.api.token=${WALLARM_API_TOKEN} ${HELM_ARGS:-}" | ||
HELM_EXTRA_SET_ARGS="--set config.wallarm.api.token=${WALLARM_API_TOKEN} \ | ||
--set imagePullSecrets[0].name=${DOCKERHUB_SECRET_NAME} \ | ||
${HELM_ARGS:-}" | ||
|
||
# Handle the case when we run chart testing with '--upgrade' option | ||
if [[ "${CT_MODE:-}" == "upgrade" ]]; then | ||
|
@@ -43,6 +55,14 @@ if ! kubectl -n ${CT_NAMESPACE} get secret "${SECRET_NAME}" &> /dev/null; then | |
kubectl -n ${CT_NAMESPACE} create secret generic "${SECRET_NAME}" --from-literal="${SECRET_KEY}"="${WALLARM_API_TOKEN}" | ||
fi | ||
|
||
if ! kubectl -n ${CT_NAMESPACE} get secret "${DOCKERHUB_SECRET_NAME}" &> /dev/null; then | ||
echo "Creating secret ${DOCKERHUB_SECRET_NAME}..." | ||
kubectl -n ${CT_NAMESPACE} create secret docker-registry "${DOCKERHUB_SECRET_NAME}" \ | ||
--docker-username="${DOCKERHUB_USER}" \ | ||
--docker-password="${DOCKERHUB_PASSWORD}" \ | ||
[email protected] | ||
fi | ||
|
||
cat <<EOF > ct.sh | ||
#!/bin/bash | ||
set -e | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,6 @@ config: | |
fallback: "off" | ||
|
||
controller: | ||
replicaCount: 1 | ||
replicaCount: 1 | ||
imagePullSecrets: | ||
- name: dockerhub-secret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters