Skip to content

Commit

Permalink
free5GC: fix TLS certs path
Browse files Browse the repository at this point in the history
  • Loading branch information
raoufkh committed Jul 21, 2023
1 parent 4d32360 commit 8601122
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ data:
bindingIPv4: 0.0.0.0 # IP used to bind the service
port: {{ .service.port }}
tls:
key: cert/amf.key
pem: cert/amf.pem
key: ../cert/amf.key
pem: ../cert/amf.pem

nrfUri: {{ $.Values.global.sbi.scheme }}://{{ $.Values.global.nrf.service.name }}:{{ $.Values.global.nrf.service.port }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ data:
bindingIPv4: 0.0.0.0 # IP used to bind the service
port: {{ .service.port }}
tls:
key: cert/ausf.key
pem: cert/ausf.pem
key: ../cert/ausf.key
pem: ../cert/ausf.pem
nrfUri: {{ $.Values.global.sbi.scheme }}://{{ $.Values.global.nrf.service.name }}:{{ $.Values.global.nrf.service.port }}
Expand Down
6 changes: 3 additions & 3 deletions charts/free5gc/charts/free5gc-n3iwf/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ n3iwf:
# Security
# Private Key File Path
PrivateKey: cert/n3iwf.key
PrivateKey: ../cert/n3iwf.key
# Certificate Authority (CA)
CertificateAuthority: cert/n3iwf.pem
CertificateAuthority: ../cert/n3iwf.pem
# Certificate
Certificate: cert/n3iwf.pem
Certificate: ../cert/n3iwf.pem
# IP address that will be allocated to UE in IPSec tunnel
UEIPAddressRange: 10.0.0.0/24
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ data:
bindingIPv4: 0.0.0.0 # IP used to bind the service
port: {{ $.Values.global.nrf.service.port }}
tls:
key: cert/nrf.key
pem: cert/nrf.pem
key: ../cert/nrf.key
pem: ../cert/nrf.pem
{{- .configuration.configuration | nindent 6 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ data:
bindingIPv4: 0.0.0.0 # IP used to bind the service
port: {{ .service.port }}
tls:
key: cert/nssf.key
pem: cert/nssf.pem
key: ../cert/nssf.key
pem: ../cert/nssf.pem
nrfUri: {{ $.Values.global.sbi.scheme }}://{{ $.Values.global.nrf.service.name }}:{{ $.Values.global.nrf.service.port }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ data:
bindingIPv4: 0.0.0.0 # IP used to bind the service
port: {{ .service.port }}
tls:
key: cert/pcf.key
pem: cert/pcf.pem
key: ../cert/pcf.key
pem: ../cert/pcf.pem
mongodb: # the mongodb connected by this PCF
name: free5gc # name of the mongodb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ data:
bindingIPv4: 0.0.0.0 # IP used to bind the service
port: {{ .service.port }}
tls:
key: cert/smf.key
pem: cert/smf.pem
key: ../cert/smf.key
pem: ../cert/smf.pem
nrfUri: {{ $.Values.global.sbi.scheme }}://{{ $.Values.global.nrf.service.name }}:{{ $.Values.global.nrf.service.port }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ data:
bindingIPv4: 0.0.0.0 # IP used to bind the service
port: {{ .service.port }}
tls:
key: cert/udm.key
pem: cert/udm.pem
key: ../cert/udm.key
pem: ../cert/udm.pem
nrfUri: {{ $.Values.global.sbi.scheme }}://{{ $.Values.global.nrf.service.name }}:{{ $.Values.global.nrf.service.port }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ data:
bindingIPv4: 0.0.0.0 # IP used to bind the service
port: {{ .service.port }}
tls:
key: cert/udr.key
pem: cert/udr.pem
key: ../cert/udr.key
pem: ../cert/udr.pem
mongodb:
name: free5gc
Expand Down

0 comments on commit 8601122

Please sign in to comment.