Skip to content

Commit fea97f3

Browse files
Merge pull request #11 from Gradiant/fix-version
versions fixed
2 parents 2c924d9 + 40526d1 commit fea97f3

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 0.0.1
6+
VERSION ?= 1.0.4
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ The operator provides full management of Open5GS subscribers, including configur
2929

3030
## How to Install
3131

32-
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.
32+
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.
3333
```bash
34-
helm install open5gs-operator oci://registry-1.docker.io/gradiantcharts/open5gs-operator --version 1.0.4
34+
helm install open5gs-operator oci://registry-1.docker.io/gradiantcharts/open5gs-operator
3535
```
3636

3737
To uninstall the operator, run:

test/suite_1/suite_1_test.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ var _ = Describe("controller", Ordered, func() {
4444
var controllerPodName string
4545
var err error
4646

47-
var projectimage = "gradiant/open5gs-operator:1.0.4"
47+
var projectimage = "gradiant/open5gs-operator:dev"
4848

49-
// By("building the manager(Operator) image")
50-
// cmd := exec.Command("make", "docker-build", fmt.Sprintf("IMG=%s", projectimage))
51-
// _, err = utils.Run(cmd)
52-
// ExpectWithOffset(1, err).NotTo(HaveOccurred())
49+
By("building the manager(Operator) image")
50+
cmd := exec.Command("make", "docker-build", fmt.Sprintf("IMG=%s", projectimage))
51+
_, err = utils.Run(cmd)
52+
ExpectWithOffset(1, err).NotTo(HaveOccurred())
5353

54-
// By("loading the the manager(Operator) image on Kind")
55-
// err = utils.LoadImageToKindClusterWithName(projectimage)
56-
// ExpectWithOffset(1, err).NotTo(HaveOccurred())
54+
By("loading the the manager(Operator) image on Kind")
55+
err = utils.LoadImageToKindClusterWithName(projectimage)
56+
ExpectWithOffset(1, err).NotTo(HaveOccurred())
5757

5858
By("installing CRDs")
59-
cmd := exec.Command("make", "install")
59+
cmd = exec.Command("make", "install")
6060
_, err = utils.Run(cmd)
6161
ExpectWithOffset(1, err).NotTo(HaveOccurred())
6262

0 commit comments

Comments
 (0)