Skip to content

Commit 75df165

Browse files
committed
ghcr.io/eeveebot/toolbox => cli
1 parent 1a5bb91 commit 75df165

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

dist/bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ spec:
354354
description: ToolboxSpec defines the desired state of Toolbox
355355
properties:
356356
containerImage:
357-
default: ghcr.io/eeveebot/toolbox:latest
357+
default: ghcr.io/eeveebot/cli:latest
358358
description: ContainerImage defines the container image to use
359359
type: string
360360
metrics:

dist/cr-samples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ metadata:
124124
name: toolbox
125125
namespace: my-eevee-bot
126126
spec:
127-
containerImage: ghcr.io/eeveebot/toolbox:latest
127+
containerImage: ghcr.io/eeveebot/cli:latest
128128
natsNamespace: my-eevee-bot
129129
pullPolicy: Always
130130
size: 1

dist/crds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ spec:
345345
description: ToolboxSpec defines the desired state of Toolbox
346346
properties:
347347
containerImage:
348-
default: ghcr.io/eeveebot/toolbox:latest
348+
default: ghcr.io/eeveebot/cli:latest
349349
description: ContainerImage defines the container image to use
350350
type: string
351351
metrics:

src/api/eevee/v1alpha1/toolbox_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type ToolboxSpec struct {
1616
Size int32 `json:"size,omitempty"`
1717

1818
// ContainerImage defines the container image to use
19-
// +kubebuilder:default="ghcr.io/eeveebot/toolbox:latest"
19+
// +kubebuilder:default="ghcr.io/eeveebot/cli:latest"
2020
ContainerImage string `json:"containerImage,omitempty"`
2121

2222
// PullPolicy defines the imagepullpolicy to use

src/config/crd/bases/eevee.bot_toolboxes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
description: ToolboxSpec defines the desired state of Toolbox
4141
properties:
4242
containerImage:
43-
default: ghcr.io/eeveebot/toolbox:latest
43+
default: ghcr.io/eeveebot/cli:latest
4444
description: ContainerImage defines the container image to use
4545
type: string
4646
metrics:

src/config/samples/eevee_v1alpha1_toolbox.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
size: 1
1010

1111
# Override container image
12-
containerImage: ghcr.io/eeveebot/toolbox:latest
12+
containerImage: ghcr.io/eeveebot/cli:latest
1313

1414
# Override pull policy
1515
# Defaults to IfNotPresent

src/internal/controller/eevee/toolbox_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
const toolboxFinalizer = "eevee.bot/finalizer"
2626

27-
const defaultImageForToolbox = "ghcr.io/eeveebot/toolbox:latest"
27+
const defaultImageForToolbox = "ghcr.io/eeveebot/cli:latest"
2828

2929
// Definitions to manage status conditions
3030
const (

0 commit comments

Comments
 (0)