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 ?= 1.0.6
VERSION ?= 1.0.7

# 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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ A complete demo with UERANSIM is available at [this link](https://gradiant.githu
9. Components with metric support can generate a `ServiceMonitor` CR to expose metrics to Prometheus. However, ensure that the `ServiceMonitor` CRD is installed in the cluster; otherwise, the operator will encounter an error and fail to create the resource. To create a ServiceMonitor, set the `serviceMonitor` field to `true` in the CR for the desired component.
10. **UPF Deployment Annotations:** The annotations for the UPF Deployment are managed exclusively through the `upf.deploymentAnnotations` field in the CR. Any annotation not present in this field will be automatically reconciled by the operator (added or removed as needed), so manual changes to annotations will not persist unless reflected in the CR.
11. **UPF GTP-U Interface:** The GTP-U network interface used by the UPF is set via the `upf.gtpuDev` field in the CR (e.g., `gtpuDev: "eth0"`). By default, the UPF uses the `eth0` interface.
12. **Unprivileged UPF Mode (Opt-In):** Set `spec.upf.unprivileged` to `true` to run UPF without `privileged: true` and with a non-root main container (UID 1001); this field is only applied to UPF and is ignored by other components, it requires cluster support for `/dev/net/tun` and `net.ipv4.ip_forward` (including kubelet `allowed-unsafe-sysctls` and, on OpenShift, a compatible SCC), and its default value is `false`, so existing deployments keep the current behavior.

## How to create a new release

Expand Down
4 changes: 2 additions & 2 deletions charts/open5gs-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: open5gs-operator
description: A Helm chart for Kubernetes
type: application
version: 1.0.6
appVersion: "1.0.6"
version: 1.0.7
appVersion: "1.0.7"
2 changes: 1 addition & 1 deletion charts/open5gs-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ controllerManager:
- ALL
image:
repository: gradiant/open5gs-operator
tag: 1.0.6
tag: 1.0.7
resources:
requests:
cpu: 100m
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ kind: Kustomization
images:
- name: controller
newName: gradiant/open5gs-operator
newTag: 1.0.6
newTag: 1.0.7
Loading