Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial commit of azure supplemental values file #218

Merged
merged 2 commits into from
Aug 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions getting-started/templates/Azure/azure_supplemental_values
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# This supplemental values file provides annotations for the azure application gateway and System Link Enterprise service health checks paths.
#
# This file should be passed in as a values file with systemlink-secrets and systemlink-values during SLE install.
#
# Modify "systemlink-ssl-cert" to match the name of your certificate used for the application gateway.
#
# The default health check path /up addresses the health probe for most services.
# Those that diverge from this path are declared below by service.
# Health check paths should not be modified unless called out in monthly release notes.
#
# This is a YAML-formatted file.

global:
ts-reed-ni marked this conversation as resolved.
Show resolved Hide resolved
ingress:
## Ingress settings that apply to the apiHosts endpoints.
##
api:
## Annotations for the ingress.
##
annotations: {
kubernetes.io/ingress.class: azure/application-gateway,
appgw.ingress.kubernetes.io/health-probe-path: "/up",
#appgw.ingress.kubernetes.io/appgw-ssl-profile: "systemlink-ssl-profile",
appgw.ingress.kubernetes.io/appgw-ssl-certificate: "systemlink-ssl-cert"
}
## Ingress settings that apply to the hosts endpoints.
##
ui:
## @param global.ingress.ui.annotations Annotations for the ingress.
##
annotations: {
kubernetes.io/ingress.class: azure/application-gateway,
appgw.ingress.kubernetes.io/health-probe-path: "/up",
#appgw.ingress.kubernetes.io/appgw-ssl-profile: "systemlink-ssl-profile",
appgw.ingress.kubernetes.io/appgw-ssl-certificate: "systemlink-ssl-cert"
}

assetservice:
ingress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/niapm/up"

dashboardhost:
ingress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/api/health"
apiIngress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/api/health"

testmonitorservice:
ingress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/nitestmonitor/up"

dataframeservice:
ingress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/nidataframe/health"

feedservice:
ingress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/nifeed/up"

nbexecservice:
ingress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/ninbexecution/up"

notification:
ingress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/ninotification/up"

swaggerapi:
ingress:
annotations:
appgw.ingress.kubernetes.io/health-probe-path: "/niapis"
Loading