Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
18 changes: 9 additions & 9 deletions test/suite_1/suite_1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down