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 charts/open5gs-upf/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ maintainers:
- email: cgiraldo@gradiant.org
name: cgiraldo
name: open5gs-upf
version: 2.3.1
version: 2.3.2
annotations:
artifacthub.io/category: networking
keywords:
Expand Down
3 changes: 2 additions & 1 deletion charts/open5gs-upf/resources/k8s-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ echo "Executing k8s customized entrypoint.sh"
{{- if .createDev }}
echo "Creating net device {{ .dev }}"
if grep "{{ .dev }}" /proc/net/dev > /dev/null; then
echo "Warnin: Net device {{ .dev }} already exists! may you need to set createDev: false";
echo "Warning: Net device {{ .dev }} already exists! may you need to set createDev: false";
exit 1
fi

ip tuntap add name {{ .dev }} mode tun
ip link set {{ .dev }} up
ip link set dev {{ .dev }} txqueuelen 4096
echo "Setting IP {{ .gateway }} to device {{ .dev }}"
ip addr add {{ .gateway }}/{{ .mask }} dev {{ .dev }};
sysctl -w net.ipv4.ip_forward=1;
Expand Down
4 changes: 2 additions & 2 deletions charts/open5gs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ maintainers:
- email: cgiraldo@gradiant.org
name: cgiraldo
name: open5gs
version: 2.3.3
version: 2.3.4
annotations:
artifacthub.io/category: networking
keywords:
Expand Down Expand Up @@ -109,7 +109,7 @@ dependencies:
condition: udr.enabled
alias: udr
- name: open5gs-upf
version: ~2.3.1
version: ~2.3.2
repository: file://../open5gs-upf
condition: upf.enabled
alias: upf
Expand Down