diff --git a/Makefile b/Makefile index 8b599bf..a4f1077 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # To re-generate a bundle for another specific version without changing the standard setup, you can: # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION ?= 0.0.1 +VERSION ?= 1.0.4 # CHANNELS define the bundle channels used in the bundle. # Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable") diff --git a/README.md b/README.md index dc8a1b2..d814363 100644 --- a/README.md +++ b/README.md @@ -29,9 +29,9 @@ The operator provides full management of Open5GS subscribers, including configur ## How to Install -To install by using Helm, you can use the Helm chart provided in the `charts` directory or the open5gs-operator-1.0.4.tgz file. The chart is also available in the Gradiant Charts repository. +To install by using Helm, you can use the Helm chart provided in the `charts` directory or the open5gs-operator-x.x.x.tgz file. The chart is also available in the Gradiant Charts repository. ```bash -helm install open5gs-operator oci://registry-1.docker.io/gradiantcharts/open5gs-operator --version 1.0.4 +helm install open5gs-operator oci://registry-1.docker.io/gradiantcharts/open5gs-operator ``` To uninstall the operator, run: diff --git a/test/suite_1/suite_1_test.go b/test/suite_1/suite_1_test.go index f607f22..9bb8c2a 100644 --- a/test/suite_1/suite_1_test.go +++ b/test/suite_1/suite_1_test.go @@ -44,19 +44,19 @@ var _ = Describe("controller", Ordered, func() { var controllerPodName string var err error - var projectimage = "gradiant/open5gs-operator:1.0.4" + var projectimage = "gradiant/open5gs-operator:dev" - // By("building the manager(Operator) image") - // cmd := exec.Command("make", "docker-build", fmt.Sprintf("IMG=%s", projectimage)) - // _, err = utils.Run(cmd) - // ExpectWithOffset(1, err).NotTo(HaveOccurred()) + By("building the manager(Operator) image") + cmd := exec.Command("make", "docker-build", fmt.Sprintf("IMG=%s", projectimage)) + _, err = utils.Run(cmd) + ExpectWithOffset(1, err).NotTo(HaveOccurred()) - // By("loading the the manager(Operator) image on Kind") - // err = utils.LoadImageToKindClusterWithName(projectimage) - // ExpectWithOffset(1, err).NotTo(HaveOccurred()) + By("loading the the manager(Operator) image on Kind") + err = utils.LoadImageToKindClusterWithName(projectimage) + ExpectWithOffset(1, err).NotTo(HaveOccurred()) By("installing CRDs") - cmd := exec.Command("make", "install") + cmd = exec.Command("make", "install") _, err = utils.Run(cmd) ExpectWithOffset(1, err).NotTo(HaveOccurred())