still wip
This commit is contained in:
parent
baed77e570
commit
5b445ae668
15
Dockerfile.test
Normal file
15
Dockerfile.test
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
FROM ubuntu:22.04
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y curl
|
||||||
|
|
||||||
|
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
|
||||||
|
&& mv kubectl /usr/bin/kubectl \
|
||||||
|
&& chmod +x /usr/bin/kubectl
|
||||||
|
|
||||||
|
ADD example.yaml /example.yaml
|
||||||
|
ADD example_dockerlogin.yaml /example_dockerlogin.yaml
|
||||||
|
ADD example_template.yaml /example_template.yaml
|
||||||
|
|
||||||
|
ADD utils/test.sh /test.sh
|
||||||
|
|
||||||
|
ENTRYPOINT [ "/test.sh" ]
|
@ -3,10 +3,15 @@ kind: Config
|
|||||||
metadata:
|
metadata:
|
||||||
name: bitwarden-crd-operator
|
name: bitwarden-crd-operator
|
||||||
build:
|
build:
|
||||||
|
tagPolicy:
|
||||||
|
sha256: {}
|
||||||
artifacts:
|
artifacts:
|
||||||
- image: ghcr.io/lerentis/bitwarden-crd-operator
|
- image: ghcr.io/lerentis/bitwarden-crd-operator
|
||||||
docker:
|
docker:
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
- image: integration-test-container
|
||||||
|
docker:
|
||||||
|
dockerfile: Dockerfile.test
|
||||||
deploy:
|
deploy:
|
||||||
helm:
|
helm:
|
||||||
releases:
|
releases:
|
||||||
@ -17,8 +22,10 @@ deploy:
|
|||||||
setValueTemplates:
|
setValueTemplates:
|
||||||
image.repository: "{{.IMAGE_REPO_ghcr_io_lerentis_bitwarden_crd_operator}}"
|
image.repository: "{{.IMAGE_REPO_ghcr_io_lerentis_bitwarden_crd_operator}}"
|
||||||
image.tag: "{{.IMAGE_TAG_ghcr_io_lerentis_bitwarden_crd_operator}}@{{.IMAGE_DIGEST_ghcr_io_lerentis_bitwarden_crd_operator}}"
|
image.tag: "{{.IMAGE_TAG_ghcr_io_lerentis_bitwarden_crd_operator}}@{{.IMAGE_DIGEST_ghcr_io_lerentis_bitwarden_crd_operator}}"
|
||||||
test:
|
verify:
|
||||||
- image: ghcr.io/lerentis/bitwarden-crd-operator
|
- name: integration-test-container
|
||||||
custom:
|
container:
|
||||||
- command: ./utils/test.sh
|
name: integration-test-container
|
||||||
timeoutSeconds: 60
|
image: "integration-test-container:a11852f8bb9bf99553238e1fa29206421c72801df5da96ccf9f77ebd069f815f"
|
||||||
|
executionMode:
|
||||||
|
kubernetesCluster: {}
|
||||||
|
26
utils/test.sh
Normal file → Executable file
26
utils/test.sh
Normal file → Executable file
@ -1,4 +1,28 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
kubectl apply -f example*
|
for f in /*.yaml
|
||||||
|
do
|
||||||
|
echo "applying $f ..."
|
||||||
|
kubectl apply -f "$f"
|
||||||
|
done
|
||||||
|
|
||||||
|
kubectl get secret test-regcred
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Could not find secret test-regcred"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
kubectl get secret test-scope
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Could not find secret test-scope"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
kubectl get secret test-secret
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Could not find secret test-secret"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
kubectl get secret test-template
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Could not find secret test-template"
|
||||||
|
exit 1
|
||||||
|
fi
|
Loading…
Reference in New Issue
Block a user