Skip to content
Merged
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 @@ -3,7 +3,6 @@ chain:
steps:
- chain: ipi-conf-aws
- chain: ipi-install
- ref: manifests
documentation: |-
The IPI setup step contains all steps that provision an OpenShift cluster
with a default configuration on AWS.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ chain:
steps:
- chain: ipi-conf-azure
- chain: ipi-install
- ref: manifests
documentation: |-
The IPI setup step contains all steps that provision an OpenShift cluster
with a default configuration on Azure.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ chain:
steps:
- chain: ipi-conf-azure-sharednetwork
- chain: ipi-install
- ref: manifests
documentation: |-
The IPI setup step contains all steps that provision an OpenShift cluster
in a shared Virtual Network configuration on Azure.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ chain:
steps:
- chain: ipi-conf-gcp
- chain: ipi-install
- ref: manifests
documentation: |-
The IPI setup step contains all steps that provision an OpenShift cluster
with a default configuration on GCP.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ chain:
steps:
- chain: ipi-conf-gcp-sharednetwork
- chain: ipi-install
- ref: manifests
documentation: |-
The IPI setup step contains all steps that provision an OpenShift cluster
in a shared network configuration on GCP.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ chain:
steps:
- chain: ipi-conf-vsphere
- chain: ipi-install-vsphere
- ref: manifests
documentation: |-
The IPI setup step contains all steps that provision an OpenShift cluster
with a default configuration on vSphere.
11 changes: 0 additions & 11 deletions ci-operator/step-registry/manifests/OWNERS

This file was deleted.

19 changes: 0 additions & 19 deletions ci-operator/step-registry/manifests/manifests-commands.sh

This file was deleted.

11 changes: 0 additions & 11 deletions ci-operator/step-registry/manifests/manifests-ref.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ workflow:
pre:
- chain: ipi-aws-pre
- ref: ipi-install-loki
- ref: manifests
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ workflow:
- ref: ovn-conf
- ref: ovn-conf-hybrid-manifest
- chain: ipi-install
- ref: manifests
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ workflow:
- chain: ipi-conf-aws
- ref: ovn-conf
- chain: ipi-install
- ref: manifests
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ workflow:
- ref: sdn-conf
- ref: sdn-conf-multi-manifest
- chain: ipi-install
- ref: manifests
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ workflow:
- ref: sdn-conf
- ref: sdn-conf-single-manifest
- chain: ipi-install
- ref: manifests
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ workflow:
- chain: ipi-conf-azure
- ref: ovn-conf
- chain: ipi-install
- ref: manifests
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ workflow:
pre:
- chain: ipi-gcp-pre
- ref: ipi-install-loki
- ref: manifests
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ trap 'CHILDREN=$(jobs -p); if test -n "${CHILDREN}"; then kill ${CHILDREN} && wa

mkdir -p "${HOME}"

# if the cluster profile included an insights secret, install it to the cluster to
# report support data from the support-operator
if [[ -f "${CLUSTER_PROFILE_DIR}/insights-live.yaml" ]]; then
oc create -f "${CLUSTER_PROFILE_DIR}/insights-live.yaml" || true
fi

# set up cloud-provider-specific env vars
KUBE_SSH_BASTION="$( oc --insecure-skip-tls-verify get node -l node-role.kubernetes.io/master -o 'jsonpath={.items[0].status.addresses[?(@.type=="ExternalIP")].address}' ):22"
KUBE_SSH_KEY_PATH=${CLUSTER_PROFILE_DIR}/ssh-privatekey
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ workflow:
- chain: ipi-conf-vsphere
- ref: ovn-conf
- chain: ipi-install-vsphere
- ref: manifests
test:
- ref: openshift-e2e-test
post:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ chain:
- ref: ipi-install-rbac
- chain: upi-conf-gcp
- ref: upi-install-gcp
- ref: manifests
documentation: >-
This chain contains all of the steps to provision an OpenShift cluster using the GCP UPI workflow.