Skip to content

Commit d6d0942

Browse files
Update image locations:
Tinkerbell Action image references were pointing to the old locations. Signed-off-by: Jacob Weinstock <[email protected]>
1 parent 3c07484 commit d6d0942

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

config/default/manager_image_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spec:
88
spec:
99
containers:
1010
# Change the value of image field below to your controller image URL
11-
- image: ghcr.io/tinkerbell/cluster-api-provider-tinkerbell-amd64:dev
11+
- image: ghcr.io/tinkerbell/cluster-api-provider-tinkerbell:dev
1212
name: manager

config/default/manager_pull_policy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ spec:
88
spec:
99
containers:
1010
- name: manager
11-
imagePullPolicy: Always
11+
imagePullPolicy: IfNotPresent

controller/machine/template.go

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ tasks:
3535
- /dev/console:/dev/console
3636
- /lib/firmware:/lib/firmware:ro
3737
actions:
38-
- name: "stream-image"
39-
image: quay.io/tinkerbell-actions/oci2disk:v1.0.0
38+
- name: "stream image"
39+
image: quay.io/tinkerbell/actions/oci2disk
4040
timeout: 600
4141
environment:
4242
IMG_URL: {{.ImageURL}}
4343
DEST_DISK: {{.DestDisk}}
4444
COMPRESSED: true
45-
- name: "add-tink-cloud-init-config"
46-
image: quay.io/tinkerbell-actions/writefile:v1.0.0
45+
- name: "add tink cloud-init config"
46+
image: quay.io/tinkerbell/actions/writefile
4747
timeout: 90
4848
environment:
4949
DEST_DISK: {{.DestPartition}}
@@ -67,8 +67,8 @@ tasks:
6767
manage_etc_hosts: localhost
6868
warnings:
6969
dsid_missing_source: off
70-
- name: "add-tink-cloud-init-ds-config"
71-
image: quay.io/tinkerbell-actions/writefile:v1.0.0
70+
- name: "add tink cloud-init ds-config"
71+
image: quay.io/tinkerbell/actions/writefile
7272
timeout: 90
7373
environment:
7474
DEST_DISK: {{.DestPartition}}
@@ -80,15 +80,15 @@ tasks:
8080
DIRMODE: 0700
8181
CONTENTS: |
8282
datasource: Ec2
83-
- name: "kexec-image"
84-
image: ghcr.io/jacobweinstock/waitdaemon:0.1.2
83+
- name: "kexec image"
84+
image: ghcr.io/jacobweinstock/waitdaemon:0.2.1
8585
timeout: 90
8686
pid: host
8787
environment:
8888
BLOCK_DEVICE: {{.DestPartition}}
8989
FS_TYPE: ext4
90-
IMAGE: quay.io/tinkerbell-actions/kexec:v1.0.0
91-
WAIT_SECONDS: 10
90+
IMAGE: quay.io/tinkerbell/actions/kexec
91+
WAIT_SECONDS: 5
9292
volumes:
9393
- /var/run/docker.sock:/var/run/docker.sock
9494
`

0 commit comments

Comments
 (0)