diff --git a/helm/Chart.yaml b/helm/Chart.yaml index aa48b4bb..0c97ef69 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: higress-console description: Management console for Higress type: application -version: 1.3.2 +version: 1.4.1 sources: - https://github.com/higress-group/higress-console -appVersion: "1.3.2" +appVersion: "1.4.1" diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index 7349ca6b..ca498b27 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -58,6 +58,8 @@ spec: {{- end }} - name: HIGRESS_CONSOLE_CONTROLLER_INGRESS_CLASS_NAME value: {{ .Values.global.ingressClass }} + - name: SPRINGFOX_DOCUMENTATION_ENABLED + value: "{{ .Values.swagger.enabled }}" ports: - name: http containerPort: {{ .Values.service.port }} diff --git a/helm/values.yaml b/helm/values.yaml index c48bde6a..77287f92 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -90,6 +90,9 @@ web: login: prompt: "" # If set, a prompt message will be displayed on the login page. +swagger: + enabled: false + admin: username: admin displayName: Admin