mirror of
				https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui.git
				synced 2025-10-31 02:38:01 +00:00 
			
		
		
		
	Compare commits
	
		
			24 Commits
		
	
	
		
			release/v3
			...
			v2.4.2
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | a41f66f002 | ||
|   | 866036f323 | ||
|   | 6c4cbff1a6 | ||
|   | 6298d4f29a | ||
|   | 8f0828a394 | ||
|   | c4cfc76b2d | ||
|   | e02f939cb8 | ||
|   | 4bde6e2d1f | ||
|   | ee69783a66 | ||
|   | cddb0e94fa | ||
|   | b1277ff2ac | ||
|   | 262c1fe1e2 | ||
|   | 2d2603ff27 | ||
|   | d349e43523 | ||
|   | ebf2d7d5c6 | ||
|   | 411c618be1 | ||
|   | 6151dcb8ff | ||
|   | 3564abfa29 | ||
|   | 955becdb46 | ||
|   | daba3a3f28 | ||
|   | 33b8d1a1f5 | ||
|   | 5e35c23883 | ||
|   | 601c369f2d | ||
|   | d48925f9ba | 
| @@ -20,7 +20,7 @@ Currently this chart is not assembled in charts archives, so [helm-git](https:// | ||||
| To install the chart with the release name `my-release`: | ||||
|  | ||||
| ```bash | ||||
| $ helm install --name my-release git+https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui@helm?ref=main | ||||
| $ helm install --name my-release git+https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui@helm/owgwui-0.1.0.tgz?ref=main | ||||
| ``` | ||||
|  | ||||
| The command deploys the Web UI on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. | ||||
|   | ||||
| @@ -30,3 +30,13 @@ Create chart name and version as used by the chart label. | ||||
| {{- define "owgwui.chart" -}} | ||||
| {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} | ||||
| {{- end -}} | ||||
|  | ||||
| {{- define "owgwui.ingress.apiVersion" -}} | ||||
|   {{- if .Capabilities.APIVersions.Has "networking.k8s.io/v1" -}} | ||||
|       {{- print "networking.k8s.io/v1" -}} | ||||
|   {{- else if .Capabilities.APIVersions.Has "networking.k8s.io/v1beta1" -}} | ||||
|     {{- print "networking.k8s.io/v1beta1" -}} | ||||
|   {{- else -}} | ||||
|     {{- print "extensions/v1beta1" -}} | ||||
|   {{- end -}} | ||||
| {{- end -}} | ||||
|   | ||||
| @@ -26,6 +26,12 @@ spec: | ||||
|         {{- with .Values.services.owgwui.labels }} | ||||
|         {{- toYaml . | nindent 8 }} | ||||
|         {{- end }} | ||||
|       {{- if .Values.podAnnotations }} | ||||
|       annotations: | ||||
|         {{- with .Values.podAnnotations }} | ||||
|         {{- toYaml . | nindent 8 }} | ||||
|         {{- end }} | ||||
|       {{- end }} | ||||
|     spec: | ||||
|  | ||||
|       containers: | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
| {{- range $ingress, $ingressValue := .Values.ingresses }} | ||||
| {{- if $ingressValue.enabled }} | ||||
| --- | ||||
| apiVersion: extensions/v1beta1 | ||||
| apiVersion: {{ include "owgwui.ingress.apiVersion" $root }} | ||||
| kind: Ingress | ||||
| metadata: | ||||
|   name: {{ include "owgwui.fullname" $root }}-{{ $ingress }} | ||||
| @@ -36,11 +36,25 @@ spec: | ||||
|       paths: | ||||
|       {{- range $ingressValue.paths }} | ||||
|         - path: {{ .path }} | ||||
|           {{- if $root.Capabilities.APIVersions.Has "networking.k8s.io/v1" }} | ||||
|           pathType: {{ .pathType | default "ImplementationSpecific" }} | ||||
|           {{- end }} | ||||
|           backend: | ||||
|             {{- if $root.Capabilities.APIVersions.Has "networking.k8s.io/v1" }} | ||||
|             service: | ||||
|               name: {{ include "owgwui.fullname" $root }}-{{ .serviceName }} | ||||
|               port: | ||||
|               {{- if kindIs "string" .servicePort }} | ||||
|                 name: {{ .servicePort }} | ||||
|               {{- else }} | ||||
|                 number: {{ .servicePort }} | ||||
|               {{- end }} | ||||
|             {{- else }} | ||||
|             serviceName: {{ include "owgwui.fullname" $root }}-{{ .serviceName }} | ||||
|             servicePort: {{ .servicePort }} | ||||
|             {{- end }} | ||||
|       {{- end }} | ||||
|   {{- end }} | ||||
|  | ||||
| {{- end }} | ||||
|  | ||||
|   | ||||
| @@ -7,7 +7,7 @@ fullnameOverride: "" | ||||
| images: | ||||
|   owgwui: | ||||
|     repository: tip-tip-wlan-cloud-ucentral.jfrog.io/owgw-ui | ||||
|     tag: main | ||||
|     tag: v2.4.2 | ||||
|     pullPolicy: Always | ||||
|  | ||||
| services: | ||||
| @@ -48,6 +48,7 @@ ingresses: | ||||
|     - chart-example.local | ||||
|     paths: | ||||
|     - path: / | ||||
|       pathType: ImplementationSpecific | ||||
|       serviceName: owgwui | ||||
|       servicePort: http | ||||
|  | ||||
| @@ -69,6 +70,8 @@ tolerations: [] | ||||
|  | ||||
| affinity: {} | ||||
|  | ||||
| podAnnotations: {} | ||||
|  | ||||
| # Application | ||||
| public_env_variables: | ||||
|   DEFAULT_UCENTRALSEC_URL: https://ucentral.dpaas.arilia.com:16001 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user