Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ tests:
cron: '@yearly'
steps:
cluster_profile: vsphere-connected-2
env:
SLEEP_DURATION: 5h
test:
- ref: cucushift-installer-wait
workflow: cucushift-installer-rehearse-vsphere-ipi-template
zz_generated_metadata:
branch: main
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,15 @@ tests:
env:
FEATURE_SET: TechPreviewNoUpgrade
workflow: cucushift-installer-rehearse-gcp-ipi-user-labels-tags-filestore-csi
- as: installer-rehearse-vsphere
cron: '@yearly'
steps:
cluster_profile: vsphere-connected-2
env:
SLEEP_DURATION: 5h
test:
- ref: cucushift-installer-wait
workflow: cucushift-installer-rehearse-vsphere-ipi-customized-resource
zz_generated_metadata:
branch: main
org: openshift
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34045,6 +34045,81 @@ periodics:
- name: result-aggregator
secret:
secretName: result-aggregator
- agent: kubernetes
cluster: vsphere02
cron: '@yearly'
decorate: true
decoration_config:
skip_cloning: true
extra_refs:
- base_ref: main
org: openshift
repo: verification-tests
labels:
ci-operator.openshift.io/cloud: vsphere
ci-operator.openshift.io/cloud-cluster-profile: vsphere-connected-2
ci-operator.openshift.io/variant: installer-rehearse-4.15
ci.openshift.io/generator: prowgen
job-release: "4.15"
pj-rehearse.openshift.io/can-be-rehearsed: "true"
name: periodic-ci-openshift-verification-tests-main-installer-rehearse-4.15-installer-rehearse-vsphere
spec:
containers:
- args:
- --gcs-upload-secret=/secrets/gcs/service-account.json
- --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson
- --lease-server-credentials-file=/etc/boskos/credentials
- --report-credentials-file=/etc/report/credentials
- --secret-dir=/secrets/ci-pull-credentials
- --target=installer-rehearse-vsphere
- --variant=installer-rehearse-4.15
command:
- ci-operator
image: ci-operator:latest
imagePullPolicy: Always
name: ""
resources:
requests:
cpu: 10m
volumeMounts:
- mountPath: /etc/boskos
name: boskos
readOnly: true
- mountPath: /secrets/ci-pull-credentials
name: ci-pull-credentials
readOnly: true
- mountPath: /secrets/gcs
name: gcs-credentials
readOnly: true
- mountPath: /secrets/manifest-tool
name: manifest-tool-local-pusher
readOnly: true
- mountPath: /etc/pull-secret
name: pull-secret
readOnly: true
- mountPath: /etc/report
name: result-aggregator
readOnly: true
serviceAccountName: ci-operator
volumes:
- name: boskos
secret:
items:
- key: credentials
path: credentials
secretName: boskos-credentials
- name: ci-pull-credentials
secret:
secretName: ci-pull-credentials
- name: manifest-tool-local-pusher
secret:
secretName: manifest-tool-local-pusher
- name: pull-secret
secret:
secretName: registry-pull-credentials
- name: result-aggregator
secret:
secretName: result-aggregator
- agent: kubernetes
cluster: build01
cron: '@yearly'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ set -o nounset
set -o errexit
set -o pipefail

export PATH=/tmp/:$PATH
which extended-platform-tests

echo "WAITING FOR DEBUG..."
while [ ! -f "/tmp/continue" ]
do
sleep 10
done

function warn_0_case_executed {
local count
count="$(ls ${ARTIFACT_DIR} | wc -l)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,14 @@ then
CLUSTER_ID=$(cat "${SHARED_DIR}/cluster-id") || true
export CLUSTER_ID
fi
export PATH=/tmp/:$PATH
which extended-platform-tests

echo "WAITING FOR DEBUG..."
while [ ! -f "/tmp/continue" ]
do
sleep 10
done
# configure environment for different cluster
echo "CLUSTER_TYPE is ${CLUSTER_TYPE}"
case "${CLUSTER_TYPE}" in
Expand Down