-
-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: drivebyer <[email protected]>
- Loading branch information
Showing
5 changed files
with
28 additions
and
22 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
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Create k8s Kind Cluster | ||
uses: helm/[email protected] | ||
with: | ||
config: "./kind-config.yaml" | ||
config: "./tests/_config/kind-config.yaml" | ||
|
||
- name: Extract and encode kubeconfig from kind | ||
run: | | ||
|
@@ -31,11 +31,11 @@ jobs: | |
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build multi-arch image | ||
- name: Build image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
platforms: linux/arm64,linux/amd64 | ||
platforms: linux/amd64 | ||
push: false | ||
tags: ${{ env.ImageName }}:${{ env.ImageTag }} | ||
|
||
|
@@ -51,7 +51,11 @@ jobs: | |
helm install --create-namespace --namespace=ot-container redis-operator ot-helm/redis-operator \ | ||
--set redisOperator.imageName=${{ env.ImageName }} \ | ||
--set redisOperator.imageTag=${{ env.ImageTag }} \ | ||
--set redisOperator.imagePullPolicy=Never | ||
--set redisOperator.imagePullPolicy=Never --wait --timeout 5m | ||
- name: Show Pods - DEBUG | ||
run: | | ||
kubectl get pods -n ot-container | ||
- name: Install kuttl | ||
run: | | ||
|
@@ -60,4 +64,4 @@ jobs: | |
- name: Run e2e test | ||
run: | | ||
kuttl test | ||
kuttl test --config ./tests/_config/kuttl-test.yaml |
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
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
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