mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-12 17:30:19 +00:00
8181d13313
The new OpenShift cluster complained about deprecated types and missing options in the yaml files. Signed-off-by: Niels de Vos <ndevos@ibm.com>
32 lines
554 B
YAML
32 lines
554 B
YAML
---
|
|
apiVersion: image.openshift.io/v1
|
|
kind: ImageStream
|
|
metadata:
|
|
name: mirror-images
|
|
labels:
|
|
app: mirror-images
|
|
spec:
|
|
tags:
|
|
- name: latest
|
|
---
|
|
apiVersion: build.openshift.io/v1
|
|
kind: BuildConfig
|
|
metadata:
|
|
name: mirror-images
|
|
labels:
|
|
app: mirror-images
|
|
spec:
|
|
runPolicy: Serial
|
|
source:
|
|
git:
|
|
uri: https://github.com/ceph/ceph-csi
|
|
ref: ci/centos
|
|
contextDir: mirror
|
|
strategy:
|
|
dockerStrategy:
|
|
dockerfilePath: Containerfile
|
|
output:
|
|
to:
|
|
kind: ImageStreamTag
|
|
name: mirror-images:latest
|