Skip to content

Commit

Permalink
chore: refactor image location
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
  • Loading branch information
AlexsJones committed Apr 24, 2023
1 parent be357c7 commit 1a60e62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# Image URL to use all building/pushing image targets
IMG ?= ghcr.io/k8sgpt-ai/k8sgpt:latest
IMG ?= ghcr.io/k8sgpt-ai/k8sgpt-operator:latest
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
ENVTEST_K8S_VERSION = 1.26.0
CHART_VERSION=v0.0.1# x-release-please-version
Expand Down
2 changes: 1 addition & 1 deletion pkg/resources/k8sgpt.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func GetDeployment(config v1alpha1.K8sGPT) (*appsv1.Deployment, error) {
Containers: []v1.Container{
{
Name: "k8sgpt",
Image: "ghcr.io/k8sgpt-ai/k8sgpt:" + config.Spec.Version,
Image: "ghcr.io/k8sgpt-ai/k8sgpt-operator:" + config.Spec.Version,
Args: []string{
"serve",
},
Expand Down

0 comments on commit 1a60e62

Please sign in to comment.