-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: RHINENG-9589 add autopromotion pipeline tests
- Loading branch information
1 parent
fc6b187
commit 006a35a
Showing
3 changed files
with
101 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
# Get names of all cronjobs, if not found any ignore the error message | ||
# to not let k8s raise an error with an exit code indicating success | ||
CRONJOBS=$(kubectl get cronjobs 2>/dev/null | awk 'NR>1 {print $1}') | ||
|
||
if [ -z "$CRONJOBS" ]; then | ||
echo $CRONJOBS | ||
echo "ERROR: no cronjobs found" | ||
exit 1 | ||
fi | ||
|
||
for CRONJOB in $CRONJOBS; do | ||
SUCCESS=$(kubectl get job -l "pod=${CRONJOB}" -o jsonpath='{.items[].status.succeeded}{"\n"}') | ||
|
||
if [ -z "$SUCCESS" ]; then | ||
echo "ERROR: cronjob $CRONJOB has not created any jobs" | ||
exit 1 | ||
fi | ||
|
||
if [ "$SUCCESS" != "1" ]; then | ||
echo "ERROR: cronjob $CRONJOB has not created successful jobs" | ||
exit 1 | ||
fi | ||
done |
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 |
---|---|---|
@@ -0,0 +1,75 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: stage-test-account | ||
namespace: default | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
name: stage-test-role | ||
rules: | ||
- apiGroups: | ||
- batch | ||
resources: | ||
- cronjobs | ||
- jobs | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
name: stage-test-rolebinding | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: stage-test-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: stage-test-account | ||
namespace: default | ||
--- | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: floorist-operator-stage-test | ||
namespace: default | ||
spec: | ||
template: | ||
spec: | ||
restartPolicy: Never | ||
serviceAccountName: stage-test-account | ||
containers: | ||
- image: quay.io/rhn_engineering_jvasik/floorist-operator:0.0.1 # TODO: use cloudservices quay.io | ||
name: floorist-operator-stage-test | ||
imagePullPolicy: Always | ||
command: | ||
- sh | ||
args: | ||
- stage_test.sh | ||
resources: | ||
requests: | ||
memory: 256Mi | ||
cpu: 300m | ||
limits: | ||
memory: 512Mi | ||
|
||
# parameters: | ||
# - name: IMAGE | ||
# value: quay.io/cloudservices/floorist-operator | ||
# - name: IMAGE_TAG | ||
# value: lastest | ||
# required: true | ||
# - name: SERVICE_ACCOUNT | ||
# value: floorist-operator-stage-test | ||
# displayName: floorist-operator-stage-test service account | ||
# description: name of the service account to use when deploying the pod | ||
# - name: MEMORY_REQUESTS | ||
# value: 256Mi | ||
# - name: MEMORY_LIMIT | ||
# value: 512Mi | ||
# - name: CPU_REQUESTS | ||
# value: 300m |