mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
ci: migrate to new OpenShift cluster running on AWS
Signed-off-by: Niels de Vos <ndevos@ibm.com>
This commit is contained in:
parent
234471af33
commit
8135680065
@ -9,7 +9,7 @@ def git_since = 'ci/centos'
|
||||
def base = ''
|
||||
def doc_change = 0
|
||||
// private, internal container image repository
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.ci.centos.org'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.cloud.ci.centos.org'
|
||||
def cached_image = 'ceph-csi'
|
||||
def use_pulled_image = 'USE_PULLED_IMAGE=yes'
|
||||
|
||||
|
@ -9,7 +9,7 @@ def git_since = 'devel'
|
||||
def workdir = '/opt/build/go/src/github.com/ceph/ceph-csi'
|
||||
def doc_change = 0
|
||||
// private, internal container image repository
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.ci.centos.org'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.cloud.ci.centos.org'
|
||||
def cached_image = "ceph-csi"
|
||||
def use_test_image = 'USE_PULLED_IMAGE=yes'
|
||||
def use_build_image = 'USE_PULLED_IMAGE=yes'
|
||||
|
@ -1,5 +1,5 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
apiVersion: build.openshift.io/v1
|
||||
kind: BuildConfig
|
||||
metadata:
|
||||
name: ceph-csi-canary
|
||||
@ -21,11 +21,11 @@ spec:
|
||||
output:
|
||||
to:
|
||||
kind: DockerImage
|
||||
name: registry-ceph-csi.apps.ocp.ci.centos.org/ceph-csi:canary
|
||||
name: registry-ceph-csi.apps.ocp.cloud.ci.centos.org/ceph-csi:canary
|
||||
pushSecret:
|
||||
name: container-registry-auth
|
||||
---
|
||||
apiVersion: v1
|
||||
apiVersion: build.openshift.io/v1
|
||||
kind: BuildConfig
|
||||
metadata:
|
||||
name: ceph-csi-test
|
||||
@ -47,11 +47,11 @@ spec:
|
||||
output:
|
||||
to:
|
||||
kind: DockerImage
|
||||
name: registry-ceph-csi.apps.ocp.ci.centos.org/ceph-csi:test
|
||||
name: registry-ceph-csi.apps.ocp.cloud.ci.centos.org/ceph-csi:test
|
||||
pushSecret:
|
||||
name: container-registry-auth
|
||||
---
|
||||
apiVersion: v1
|
||||
apiVersion: build.openshift.io/v1
|
||||
kind: BuildConfig
|
||||
metadata:
|
||||
name: ceph-csi-devel
|
||||
@ -73,6 +73,6 @@ spec:
|
||||
output:
|
||||
to:
|
||||
kind: DockerImage
|
||||
name: registry-ceph-csi.apps.ocp.ci.centos.org/ceph-csi:devel
|
||||
name: registry-ceph-csi.apps.ocp.cloud.ci.centos.org/ceph-csi:devel
|
||||
pushSecret:
|
||||
name: container-registry-auth
|
||||
|
@ -21,7 +21,7 @@ stringData:
|
||||
config.json: |-
|
||||
{
|
||||
"auths": {
|
||||
"registry-ceph-csi.apps.ocp.ci.centos.org": {
|
||||
"registry-ceph-csi.apps.ocp.cloud.ci.centos.org": {
|
||||
"auth": "@@SOME_B64ENCODED_STRING@@"
|
||||
}
|
||||
}
|
||||
@ -61,7 +61,7 @@ spec:
|
||||
volumes:
|
||||
- name: container-images
|
||||
persistentVolumeClaim:
|
||||
claimName: ceph-csi-image-registry
|
||||
claimName: image-registry
|
||||
- name: htpasswd
|
||||
secret:
|
||||
secretName: container-registry-auth
|
||||
|
@ -10,7 +10,7 @@ def skip_e2e = 0
|
||||
def doc_change = 0
|
||||
def k8s_release = 'latest'
|
||||
def namespace = 'k8s-e2e-storage-' + UUID.randomUUID().toString().split('-')[-1]
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.ci.centos.org'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.cloud.ci.centos.org'
|
||||
def failure = null
|
||||
|
||||
def ssh(cmd) {
|
||||
|
@ -9,7 +9,7 @@ def git_since = "devel"
|
||||
def skip_e2e = 0
|
||||
def doc_change = 0
|
||||
def k8s_release = 'latest'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.ci.centos.org'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.cloud.ci.centos.org'
|
||||
def namespace = 'cephcsi-e2e-' + UUID.randomUUID().toString().split('-')[-1]
|
||||
def failure = null
|
||||
|
||||
|
@ -9,7 +9,7 @@ def git_since = 'devel'
|
||||
def skip_e2e = 0
|
||||
def doc_change = 0
|
||||
def k8s_release = 'latest'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.ci.centos.org'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.cloud.ci.centos.org'
|
||||
def failure = null
|
||||
|
||||
def ssh(cmd) {
|
||||
|
@ -9,7 +9,7 @@
|
||||
# registry.
|
||||
#
|
||||
|
||||
CI_REGISTRY='registry-ceph-csi.apps.ocp.ci.centos.org'
|
||||
CI_REGISTRY='registry-ceph-csi.apps.ocp.cloud.ci.centos.org'
|
||||
|
||||
# get_image_entries returns the contents of images.txt without comments or empty lines
|
||||
function get_image_entries() {
|
||||
|
@ -9,7 +9,7 @@ def git_since = 'devel'
|
||||
def skip_e2e = 0
|
||||
def doc_change = 0
|
||||
def k8s_release = 'latest'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.ci.centos.org'
|
||||
def ci_registry = 'registry-ceph-csi.apps.ocp.cloud.ci.centos.org'
|
||||
def failure = null
|
||||
|
||||
def ssh(cmd) {
|
||||
|
Loading…
Reference in New Issue
Block a user