Disable airflow webserver UI by default

This PS disables Airflow Webserver UI by default.

Change-Id: Ic4734e8159db8b44675fcbced2abb1858f1813fc
This commit is contained in:
Sergiy Markin 2024-03-19 15:41:31 +00:00
parent 6fc09a6713
commit bd67c08136
4 changed files with 9 additions and 8 deletions

View File

@ -220,6 +220,7 @@
- ./tools/deployment/airskiff/developer/100-deploy-osh.sh - ./tools/deployment/airskiff/developer/100-deploy-osh.sh
- ./tools/deployment/airskiff/common/os-env.sh - ./tools/deployment/airskiff/common/os-env.sh
- ./tools/gate/wait-for-shipyard.sh - ./tools/gate/wait-for-shipyard.sh
# - ./tools/deployment/airskiff/common/sleep.sh
irrelevant-files: *irrelevant-files irrelevant-files: *irrelevant-files
- job: - job:

View File

@ -16,7 +16,7 @@
apiVersion: v1 apiVersion: v1
description: A Helm chart for Shipyard and Airflow description: A Helm chart for Shipyard and Airflow
name: shipyard name: shipyard
version: 0.2.5 version: 0.2.6
appVersion: 2.8.2 appVersion: 2.8.2
keywords: keywords:
- shipyard - shipyard

View File

@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/}} */}}
{{- if and .Values.manifests.ingress_shipyard_api .Values.network.airflow_webserver_ui.ingress.public }} {{- if and .Values.manifests.ingress_airflow_webserver_ui .Values.network.airflow_webserver_ui.ingress.public }}
{{- $ingressOpts := dict "envAll" . "backendService" "airflow_webserver_ui" "backendServiceType" "airflow_webserver_ui" "backendPort" "api" -}} {{- $ingressOpts := dict "envAll" . "backendService" "airflow_webserver_ui" "backendServiceType" "airflow_webserver_ui" "backendPort" "api" -}}
{{- $ingressOpts | include "helm-toolkit.manifests.ingress" -}} {{- $ingressOpts | include "helm-toolkit.manifests.ingress" -}}
{{- end }} {{- end }}

View File

@ -1246,11 +1246,11 @@ manifests:
# TODO: Set this to false only if a new deployment, or if the worker pod is # TODO: Set this to false only if a new deployment, or if the worker pod is
# running the scheduler # running the scheduler
deployment_airflow_scheduler: true deployment_airflow_scheduler: true
deployment_airflow_webserver_ui: true deployment_airflow_webserver_ui: false
deployment_shipyard: true deployment_shipyard: true
statefulset_airflow_worker: true statefulset_airflow_worker: true
ingress_shipyard_api: true ingress_shipyard_api: true
ingress_airflow_webserver_ui: true ingress_airflow_webserver_ui: false
job_shipyard_db_init: true job_shipyard_db_init: true
job_shipyard_db_auxiliary: true job_shipyard_db_auxiliary: true
job_shipyard_db_sync: true job_shipyard_db_sync: true
@ -1260,8 +1260,9 @@ manifests:
job_ks_endpoints: true job_ks_endpoints: true
job_ks_service: true job_ks_service: true
job_ks_user: true job_ks_user: true
secret_apache_etc: true secret_apache_etc: false
secret_airflow_webserver_ui: true secret_airflow_webserver_ui: false
secret_airflow_webserver_ui_ingress_tls: false
secret_airflow_db: true secret_airflow_db: true
secret_shipyard_db: true secret_shipyard_db: true
secret_ingress_tls: true secret_ingress_tls: true
@ -1269,8 +1270,7 @@ manifests:
secret_rabbitmq: true secret_rabbitmq: true
service_shipyard: true service_shipyard: true
service_shipyard_ingress: true service_shipyard_ingress: true
service_airflow_webserver_ui: true service_airflow_webserver_ui: false
service_airflow_webserver_ui_ingress: true
service_airflow_worker: true service_airflow_worker: true
service_discovery_airflow_worker: true service_discovery_airflow_worker: true
test_shipyard_api: true test_shipyard_api: true