Skip to content

Commit

Permalink
use knative nightly images
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Wessendorf <mwessend@redhat.com>
  • Loading branch information
matzew committed Oct 25, 2024
1 parent 1a33291 commit e0e454b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/reconciler/integrationsource/resources/containersource.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,17 +184,17 @@ func makeSSLEnvVar() []corev1.EnvVar {

func selectImage(source *v1alpha1.IntegrationSource) string {
if source.Spec.Timer != nil {
return "quay.io/openshift-knative/timer-source:1.0-SNAPSHOT"
return "gcr.io/knative-nightly/timer-source:latest"
}
if source.Spec.Aws != nil {
if source.Spec.Aws.S3 != nil {
return "quay.io/openshift-knative/aws-s3-source:1.0-SNAPSHOT"
return "gcr.io/knative-nightly/aws-s3-source:latest"
}
if source.Spec.Aws.SQS != nil {
return "quay.io/openshift-knative/aws-sqs-source:1.0-SNAPSHOT"
return "gcr.io/knative-nightly/aws-sqs-source:latest"
}
if source.Spec.Aws.DDBStreams != nil {
return "quay.io/openshift-knative/aws-ddb-streams-source:1.0-SNAPSHOT"
return "gcr.io/knative-nightly/aws-ddb-streams-source:latest"
}
}
return ""
Expand Down

0 comments on commit e0e454b

Please sign in to comment.