Skip to content

Commit e07a2de

Browse files
authored
v2 preview 1 (#1671)
1 parent 864245a commit e07a2de

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

cmd/bootstrap/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -Ceu
44

5-
IMAGE="quay.io/skupper/bootstrap:v2-latest"
5+
IMAGE="quay.io/skupper/bootstrap:2.0.0-preview-1"
66
export INPUT_PATH=""
77
export NAMESPACE=""
88
export FORCE_FLAG=""

cmd/controller/deploy_cluster_scope.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,13 @@ spec:
188188
type: RuntimeDefault
189189
containers:
190190
- name: controller
191-
image: quay.io/skupper/controller:v2-latest
191+
image: quay.io/skupper/controller:2.0.0-preview-1
192192
imagePullPolicy: Always
193193
command: ["/app/controller"]
194194
args: ["-enable-grants", "-grant-server-autoconfigure"]
195195
env:
196196
- name: SKUPPER_CONFIG_SYNC_IMAGE
197-
value: quay.io/skupper/config-sync:v2-latest
197+
value: quay.io/skupper/config-sync:2.0.0-preview-1
198198
securityContext:
199199
capabilities:
200200
drop:

cmd/controller/deploy_namespace_scope.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,13 +176,13 @@ spec:
176176
type: RuntimeDefault
177177
containers:
178178
- name: controller
179-
image: quay.io/skupper/controller:v2-latest
179+
image: quay.io/skupper/controller:2.0.0-preview-1
180180
imagePullPolicy: Always
181181
command: ["/app/controller"]
182182
args: ["-enable-grants", "-grant-server-autoconfigure"]
183183
env:
184184
- name: SKUPPER_CONFIG_SYNC_IMAGE
185-
value: quay.io/skupper/config-sync:v2-latest
185+
value: quay.io/skupper/config-sync:2.0.0-preview-1
186186
- name: WATCH_NAMESPACE
187187
valueFrom:
188188
fieldRef:

cmd/network-console-collector/resources/native/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
app.kubernetes.io/component: server
5959
spec:
6060
containers:
61-
- image: quay.io/skupper/network-console-collector:v2-latest
61+
- image: quay.io/skupper/network-console-collector:2.0.0-preview-1
6262
imagePullPolicy: Always
6363
name: network-console
6464
args:

cmd/network-console-collector/resources/openshift/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
serviceAccountName: network-console-collector
4444
containers:
4545
- name: network-console
46-
image: quay.io/skupper/network-console-collector:v2-latest
46+
image: quay.io/skupper/network-console-collector:2.0.0-preview-1
4747
imagePullPolicy: Always
4848
args:
4949
- -listen=127.0.0.1:8080

pkg/images/images.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ package images
22

33
const (
44
DefaultImageRegistry string = "quay.io/skupper"
5-
RouterImageName string = "skupper-router:main"
6-
ControllerImageName string = "controller:v2-latest"
7-
ConfigSyncImageName string = "config-sync:v2-latest"
8-
NetworkConsoleCollectorImageName string = "network-console-collector:v2-latest"
9-
BootstrapImageName string = "bootstrap:v2-latest"
5+
RouterImageName string = "skupper-router:3.0.0"
6+
ControllerImageName string = "controller:2.0.0-preview-1"
7+
ConfigSyncImageName string = "config-sync:2.0.0-preview-1"
8+
NetworkConsoleCollectorImageName string = "network-console-collector:2.0.0-preview-1"
9+
BootstrapImageName string = "bootstrap:2.0.0-preview-1"
1010

1111
PrometheusImageRegistry string = "quay.io/prometheus"
1212
PrometheusServerImageName string = "prometheus:v2.42.0"

0 commit comments

Comments
 (0)