diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index d8b9fb2c..28f3ef00 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -109,6 +109,11 @@ spec: containerPort: {{ $portValue.targetPort }} protocol: {{ $portValue.protocol }} {{- end }} + {{- range $port, $portValue := .Values.services.radius.ports }} + - name: {{ $port }} + containerPort: {{ $portValue.targetPort }} + protocol: {{ $portValue.protocol }} + {{- end }} volumeMounts: {{- range .Values.volumes.owgw }} diff --git a/helm/values.yaml b/helm/values.yaml index f2814fbd..a3839f3d 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -46,6 +46,21 @@ services: rttys-view: servicePort: 5913 targetPort: 5913 + radius: + type: ClusterIP + ports: + acc: + servicePort: 1813 + targetPort: 1813 + protocol: UDP + auth: + servicePort: 1812 + targetPort: 1812 + protocol: UDP + coa: + servicePort: 3799 + targetPort: 3799 + protocol: UDP checks: owgw: @@ -231,6 +246,11 @@ configProperties: rtty.timeout: 60 rtty.viewport: 5913 rtty.assets: $OWGW_ROOT/rtty_ui + # RADIUS proxy + radius.proxy.enable: "true" + radius.proxy.accounting.port: 1813 + radius.proxy.authentication.port: 1812 + radius.proxy.coa.port: 3799 # ALB alb.enable: "true" alb.port: 16102 diff --git a/owgw.properties b/owgw.properties index 1e2e0d33..6fd4ef9e 100644 --- a/owgw.properties +++ b/owgw.properties @@ -177,4 +177,4 @@ archiver.db.3.keep = 7 ######################################################################## logging.type = file logging.path = $OWGW_ROOT/logs -logging.level = debug \ No newline at end of file +logging.level = debug