Skip to content

Commit 7e92c12

Browse files
committed
Rename images post rename
Signed-off-by: Mangirdas Judeikis <mangirdas@judeikis.lt>
1 parent c1e4391 commit 7e92c12

17 files changed

Lines changed: 21 additions & 21 deletions

File tree

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ krews:
4343
ids:
4444
- kubectl-bind
4545
repository:
46-
owner: kube-bind
46+
owner: kbind-dev
4747
name: krew-index
4848
token: "{{ .Env.KREW_GITHUB_TOKEN }}"
4949
homepage: "https://kube-bind.io/"

backend/http/handler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ func (h *handler) handleKonnectorManifests(w http.ResponseWriter, r *http.Reques
219219
if err != nil {
220220
konnectorVersion = "latest"
221221
}
222-
konnectorImage := fmt.Sprintf("ghcr.io/kube-bind/konnector:%s", konnectorVersion)
222+
konnectorImage := fmt.Sprintf("ghcr.io/kbind-dev/konnector:%s", konnectorVersion)
223223

224224
manifests := kuberesources.NewKonnectorManifests(konnectorImage, h.kubeManager.GetKonnectorHostAliases())
225225

@@ -617,7 +617,7 @@ func (h *handler) handleApplyBinding(w http.ResponseWriter, r *http.Request) {
617617
if err != nil {
618618
konnectorVersion = "latest"
619619
}
620-
konnectorImage := fmt.Sprintf("ghcr.io/kube-bind/konnector:%s", konnectorVersion)
620+
konnectorImage := fmt.Sprintf("ghcr.io/kbind-dev/konnector:%s", konnectorVersion)
621621

622622
// Parse optional host alias overrides from request
623623
var overrideHostAliases []corev1.HostAlias

cli/pkg/kubectl/bind-apiservice/plugin/konnector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
)
3939

4040
const (
41-
konnectorImage = "ghcr.io/kube-bind/konnector"
41+
konnectorImage = "ghcr.io/kbind-dev/konnector"
4242
)
4343

4444
// DeployKonnector deploys the konnector to the cluster.

cli/pkg/kubectl/dev/cmd/cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func newCreateCommand(streams genericclioptions.IOStreams) (*cobra.Command, erro
9898
9999
The backend chart can be sourced from:
100100
101-
- OCI registry (default): oci://ghcr.io/kube-bind/charts/backend
101+
- OCI registry (default): oci://ghcr.io/kbind-dev/charts/backend
102102
- Local filesystem: --chart-path ./deploy/charts/backend
103103
- Custom OCI registry: --chart-path oci://custom.registry/charts/backend
104104
`),

cli/pkg/kubectl/dev/plugin/create.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ func NewDevOptions(streams genericclioptions.IOStreams) *DevOptions {
8787
Streams: streams,
8888
ProviderClusterName: "kind-provider",
8989
ConsumerClusterName: "kind-consumer",
90-
ChartPath: "oci://ghcr.io/kube-bind/charts/backend",
90+
ChartPath: "oci://ghcr.io/kbind-dev/charts/backend",
9191
}
9292
}
9393

@@ -101,7 +101,7 @@ func (o *DevOptions) AddCmdFlags(cmd *cobra.Command) {
101101
cmd.Flags().DurationVar(&o.WaitForReadyTimeout, "wait-for-ready-timeout", 2*time.Minute, "Timeout for waiting for the cluster to be ready")
102102
cmd.Flags().StringVar(&o.ChartPath, "chart-path", o.ChartPath, "Helm chart path or OCI registry URL")
103103
cmd.Flags().StringVar(&o.ChartVersion, "chart-version", "", "The version of the Helm chart to use")
104-
cmd.Flags().StringVar(&o.BackendImage, "backend-image", "ghcr.io/kube-bind/backend", "The name of kube-bind backend to use in dev mode")
104+
cmd.Flags().StringVar(&o.BackendImage, "backend-image", "ghcr.io/kbind-dev/backend", "The name of kube-bind backend to use in dev mode")
105105
cmd.Flags().StringVar(&o.BackendTag, "backend-tag", "", "The tag of the kube-bind backend image to use in dev mode")
106106
cmd.Flags().StringVar(&o.KindNetwork, "kind-network", "kube-bind-dev", "The name of the kind network to use in dev mode")
107107
}

deploy/charts/backend/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A Helm chart for kube-bind backend deployment
77
## Installation
88

99
```bash
10-
helm install kube-bind-backend oci://ghcr.io/kube-bind/charts/backend --version <version>
10+
helm install kube-bind-backend oci://ghcr.io/kbind-dev/charts/backend --version <version>
1111
```
1212

1313
## Configuration
@@ -35,7 +35,7 @@ See [values.yaml](values.yaml) for the full list of configurable parameters.
3535
| backend.extraArgs | list | `[]` | Extra command-line arguments to pass to the backend |
3636
| backend.frontendDisabled | bool | `false` | Disable the frontend UI |
3737
| backend.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
38-
| backend.image.repository | string | `"ghcr.io/kube-bind/backend"` | Image repository |
38+
| backend.image.repository | string | `"ghcr.io/kbind-dev/backend"` | Image repository |
3939
| backend.image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion |
4040
| backend.kubeconfig | string | `""` | Path to a kubeconfig file. Only required if out-of-cluster. |
4141
| backend.listenAddress | string | `"0.0.0.0:8080"` | Address the backend listens on |

deploy/charts/backend/README.md.gotmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## Installation
88

99
```bash
10-
helm install kube-bind-backend oci://ghcr.io/kube-bind/charts/backend --version <version>
10+
helm install kube-bind-backend oci://ghcr.io/kbind-dev/charts/backend --version <version>
1111
```
1212

1313
## Configuration

deploy/charts/backend/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ backend:
1010
# Container image configuration
1111
image:
1212
# -- Image repository
13-
repository: ghcr.io/kube-bind/backend
13+
repository: ghcr.io/kbind-dev/backend
1414
# -- Image pull policy
1515
pullPolicy: IfNotPresent
1616
# -- Overrides the image tag whose default is the chart appVersion

docs/content/blog/posts/2026-02-14-kube-bind-internals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ helm upgrade --install \
177177
--set backend.tlsExternalServerName=kubernetes.default.svc \
178178
--set backend.oidc.issuerUrl=http://kube-bind-backend.kube-bind.svc:8080/oidc \
179179
--set backend.oidc.callbackUrl=http://kube-bind-backend.kube-bind.svc:8080/api/callback \
180-
kube-bind oci://ghcr.io/kube-bind/charts/backend --version 0.7.1
180+
kube-bind oci://ghcr.io/kbind-dev/charts/backend --version 0.7.1
181181
```
182182

183183
> **Note:** The OIDC configuration used here (which uses the built-in mock OIDC provider of `kube-bind-backend`) is for demonstration purposes only. For a production deployment, you must integrate with a real OIDC provider. See [Installation with Helm](../../setup/helm.md) for production guidelines.

docs/content/blog/posts/2026-02-22-kube-bind-keycloak.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ helm upgrade --install kube-bind \
317317
--set backend.oidc.clientSecret=cSmfhB3RNuetE8pgz1hDVjDHsDpc2r2v\
318318
--set backend.oidc.callbackUrl=http://kube-bind.local:8080/api/callback \
319319
--set backend.oidc.allowedGroups={kube-bind-users} \
320-
oci://ghcr.io/kube-bind/charts/backend --version 0.7.1
320+
oci://ghcr.io/kbind-dev/charts/backend --version 0.7.1
321321
```
322322

323323
Replace `<YOUR-CLIENT-SECRET>` with what you copied from the Keycloak credentials tab.

0 commit comments

Comments
 (0)