| {{/* |
| Copyright 2019-present Open Networking Foundation |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| Default values for mcord-vepc-helm. |
| This is a YAML-formatted file. |
| Declare variables to be passed into your templates. |
| */}} |
| |
| {{- $hssJson := index .Values.config.hss.cfgFiles "hss.json" }} |
| {{- $hssJsonCommon := index $hssJson "common" }} |
| {{- $hssJsonHss := index $hssJson "hss" }} |
| |
| {{- if not (hasKey $hssJsonCommon "originhost") -}} |
| {{- $_ := tuple "hss" "identity" . | include "omec-control-plane.diameter_endpoint" | set $hssJsonCommon "originhost" -}} |
| {{- end }} |
| {{- if not (hasKey $hssJsonCommon "originrealm") -}} |
| {{- $_ := tuple "hss" "realm" . | include "omec-control-plane.diameter_endpoint" | set $hssJsonCommon "originrealm" -}} |
| {{- end }} |
| {{- if not (hasKey $hssJsonHss "casssrv") -}} |
| {{- $_ := .Values.cassandra.fullnameOverride | set $hssJsonHss "casssrv" -}} |
| {{- end }} |
| --- |
| apiVersion: v1 |
| kind: ConfigMap |
| metadata: |
| name: hss |
| labels: |
| {{ tuple "hss" . | include "omec-control-plane.metadata_labels" | indent 4 }} |
| data: |
| acl.conf: | |
| {{- if hasKey .Values.config.hss.acl "oldTls" }} |
| ALLOW_OLD_TLS {{ .Values.config.hss.acl.oldTls }} |
| {{- end }} |
| {{- if hasKey .Values.config.hss.acl "ipSec" }} |
| ALLOW_IPSEC {{ .Values.config.hss.acl.ipSec }} |
| {{- end }} |
| hss.conf: | |
| Identity = {{ tuple "hss" "identity" . | include "omec-control-plane.diameter_endpoint" | quote }}; |
| Realm = {{ tuple "hss" "realm" . | include "omec-control-plane.diameter_endpoint" | quote }}; |
| TLS_Cred = "/opt/c3po/hss/conf/{{ tuple "hss" "host" . | include "omec-control-plane.diameter_endpoint" }}.cert.pem", |
| "/opt/c3po/hss/conf/{{ tuple "hss" "host" . | include "omec-control-plane.diameter_endpoint" }}.key.pem"; |
| TLS_CA = "/opt/c3po/hss/conf/cacert.pem"; |
| No_SCTP; |
| Prefer_TCP; |
| No_IPv6; |
| SCTP_streams = 3; |
| NoRelay; |
| AppServThreads = 4; |
| Port = 3868; |
| SecPort = 5868; |
| LoadExtension = "/usr/local/lib/freeDiameter/acl_wl.fdx" : "/opt/c3po/hss/conf/acl.conf"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_3gpp2_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_draftload_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_etsi283034_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc4004_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc4006bis_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc4072_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc4590_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc5447_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc5580_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc5777_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc5778_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc6734_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc6942_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc7155_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc7683_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_rfc7944_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29061_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29128_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29154_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29173_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29212_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29214_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29215_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29217_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29229_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29272_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29273_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29329_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29336_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29337_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29338_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29343_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29344_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29345_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29368_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts29468_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_ts32299_avps.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_S6as6d.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_S6t.fdx"; |
| LoadExtension = "/usr/local/lib/freeDiameter/dict_S6c.fdx"; |
| hss-run.sh: | |
| {{ tuple "bin/_hss-run.sh.tpl" . | include "omec-control-plane.template" | indent 4 }} |
| hss-bootstrap.sh: | |
| {{ tuple "bin/_hss-bootstrap.sh.tpl" . | include "omec-control-plane.template" | indent 4 }} |
| {{- range $key, $value := .Values.config.hss.cfgFiles }} |
| {{ $key }}: {{ toJson $value | quote }} |
| {{- end }} |