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 @@ -204,10 +204,13 @@ presubmits:
trigger: ((?m)^/test( all| e2e-aws-smoke),?(\s+|$))
- agent: kubernetes
always_run: true
context: ci/prow/go-fmt
branches:
- master
context: ci/prow/gofmt
decorate: true
name: pull-ci-openshift-installer-master-gofmt
rerun_command: /test go-fmt
rerun_command: /test gofmt
skip_cloning: true
spec:
containers:
- args:
Expand All @@ -231,13 +234,16 @@ presubmits:
requests:
cpu: 10m
serviceAccountName: ci-operator
trigger: ((?m)^/test(all| go-fmt),?(\s+|$))
trigger: ((?m)^/test( all| gofmt),?(\s+|$))
- agent: kubernetes
always_run: true
branches:
- master
context: ci/prow/golint
decorate: true
name: pull-ci-openshift-installer-master-golint
rerun_command: /test golint
skip_cloning: true
spec:
containers:
- args:
Expand All @@ -261,13 +267,16 @@ presubmits:
requests:
cpu: 10m
serviceAccountName: ci-operator
trigger: ((?m)^/test(all| golint),?(\s+|$))
trigger: ((?m)^/test( all| golint),?(\s+|$))
- agent: kubernetes
always_run: true
context: ci/prow/go-vet
branches:
- master
context: ci/prow/govet
decorate: true
name: pull-ci-openshift-installer-master-govet
rerun_command: /test go-vet
rerun_command: /test govet
skip_cloning: true
spec:
containers:
- args:
Expand All @@ -291,7 +300,41 @@ presubmits:
requests:
cpu: 10m
serviceAccountName: ci-operator
trigger: ((?m)^/test(all| go-vet),?(\s+|$))
trigger: ((?m)^/test( all| govet),?(\s+|$))
- agent: kubernetes
always_run: true
branches:
- master
context: ci/prow/images
Copy link
Member

@wking wking Sep 27, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This job is always failing for us, with:

error: unable to upload new layer (0): Patch https://registry.svc.ci.openshift.org/v2/ci-op-43zwvfh8/release/blobs/uploads/dcf4557c-9a87-4aa4-9d77-e3acdd113040?_state=gJbjHXXdyNlVUJgCRicnvCShiBRmwSEuX5WyHCwyJgt7Ik5hbWUiOiJjaS1vcC00M3p3dmZoOC9yZWxlYXNlIiwiVVVJRCI6ImRjZjQ1NTdjLTlhODctNGFhNC05ZDc3LWUzYWNkZDExMzA0MCIsIk9mZnNldCI6MCwiU3RhcnRlZEF0IjoiMjAxOC0wOS0yN1QwMDowMjowMS45ODg1MTQ2OTFaIn0%3D: operator "catalog" failed to map images: yaml: line 16: mapping values are not allowed in this context

Can we drop this job, or at least make it optional, until we get that sorted?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like it fails randomly, the last two runs (17, 18) were successful.

@smarterclayton

decorate: true
name: pull-ci-openshift-installer-master-images
rerun_command: /test images
skip_cloning: true
spec:
containers:
- args:
- --give-pr-author-access-to-namespace=true
- --artifact-dir=$(ARTIFACTS)
- --target=[images]
- --target=[release:latest]
command:
- ci-operator
env:
- name: CONFIG_SPEC
valueFrom:
configMapKeyRef:
key: master.yaml
name: ci-operator-openshift-installer
image: ci-operator:latest
imagePullPolicy: Always
name: ""
resources:
limits:
cpu: 500m
requests:
cpu: 10m
serviceAccountName: ci-operator
trigger: ((?m)^/test( all| images),?(\s+|$))
- agent: kubernetes
always_run: true
branches:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
presubmits:
openshift/installer:
- agent: kubernetes
always_run: true
branches:
- release-3.11
context: ci/prow/images
decorate: true
name: pull-ci-openshift-installer-release-3.11-images
rerun_command: /test images
skip_cloning: true
spec:
containers:
- args:
- --give-pr-author-access-to-namespace=true
- --artifact-dir=$(ARTIFACTS)
- --target=[images]
command:
- ci-operator
env:
- name: CONFIG_SPEC
valueFrom:
configMapKeyRef:
key: release-3.11.yaml
name: ci-operator-openshift-installer
image: ci-operator:latest
imagePullPolicy: Always
name: ""
resources:
limits:
cpu: 500m
requests:
cpu: 10m
serviceAccountName: ci-operator
trigger: ((?m)^/test( all| images),?(\s+|$))
- agent: kubernetes
always_run: true
branches:
- release-3.11
context: ci/prow/unit
decorate: true
name: pull-ci-openshift-installer-release-3.11-unit
rerun_command: /test unit
skip_cloning: true
spec:
containers:
- args:
- --give-pr-author-access-to-namespace=true
- --artifact-dir=$(ARTIFACTS)
- --target=unit
command:
- ci-operator
env:
- name: CONFIG_SPEC
valueFrom:
configMapKeyRef:
key: release-3.11.yaml
name: ci-operator-openshift-installer
image: ci-operator:latest
imagePullPolicy: Always
name: ""
resources:
limits:
cpu: 500m
requests:
cpu: 10m
serviceAccountName: ci-operator
trigger: ((?m)^/test( all| unit),?(\s+|$))
1 change: 0 additions & 1 deletion hack/validate-generated-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ blacklist=(
"openshift/elasticsearch-operator"
"openshift/hive"
"openshift/image-registry"
"openshift/installer"
"openshift/jenkins"
"openshift/kube-rbac-proxy"
"openshift/kubernetes-autoscaler"
Expand Down