Skip to content

Commit

Permalink
Merge pull request #3942 from lsst-sqre/tickets/DM-47837
Browse files Browse the repository at this point in the history
DM-47837: Fix GafaelfawrIngress for TAP services
  • Loading branch information
rra authored Dec 2, 2024
2 parents 3e68f0b + 7057440 commit 6353977
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion applications/livetap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ IVOA TAP service
| cadc-tap.config.pg.database | string | `"lsstdb1"` | Postgres database to connect to |
| cadc-tap.config.pg.host | string | `"mock-pg:5432"` (the mock pg) | Postgres hostname:port to connect to |
| cadc-tap.config.pg.username | string | `"rubin"` | Postgres username to use to connect |
| cadc-tap.config.service | string | `"livetap"` | Name of the service from Gafaelfawr's perspective |
| cadc-tap.config.vaultSecretName | string | `"livetap"` | Vault secret name: the final key in the vault path |
| cadc-tap.ingress.path | string | `"live"` | Ingress path that should be routed to this service |
| cadc-tap.service | string | `"livetap"` | Name of the service from Gafaelfawr's perspective |
| global.baseUrl | string | Set by Argo CD | Base URL for the environment |
| global.host | string | Set by Argo CD | Host name for ingress |
| global.vaultSecretsPath | string | Set by Argo CD | Base path for Vault secrets |
6 changes: 3 additions & 3 deletions applications/livetap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ cadc-tap:
# -- What type of backend?
backend: "pg"

# -- Name of the service from Gafaelfawr's perspective
service: "livetap"

pg:
# -- Postgres hostname:port to connect to
# @default -- `"mock-pg:5432"` (the mock pg)
Expand All @@ -21,9 +24,6 @@ cadc-tap:
# -- Vault secret name: the final key in the vault path
vaultSecretName: "livetap"

# -- Name of the service from Gafaelfawr's perspective
service: "livetap"

# The following will be set by parameters injected by Argo CD and should not
# be set in the individual environment values files.
global:
Expand Down
2 changes: 1 addition & 1 deletion applications/ssotap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ IVOA TAP service for Solar System Objects
| cadc-tap.config.pg.database | string | `"dp03_catalogs"` | Postgres database to connect to |
| cadc-tap.config.pg.host | string | `"usdf-pg-catalogs.slac.stanford.edu:5432"` | Postgres hostname:port to connect to |
| cadc-tap.config.pg.username | string | `"dp03"` | Postgres username to use to connect |
| cadc-tap.config.service | string | `"ssotap"` | Name of the service from Gafaelfawr's perspective |
| cadc-tap.config.vaultSecretName | string | `"ssotap"` | Vault secret name: the final key in the vault path |
| cadc-tap.ingress.path | string | `"ssotap"` | Ingress path that should be routed to this service |
| cadc-tap.service | string | `"ssotap"` | Name of the service from Gafaelfawr's perspective |
| cadc-tap.serviceAccount.name | string | `"ssotap"` | Name of the Kubernetes `ServiceAccount`, used for CloudSQL access |
| global.baseUrl | string | Set by Argo CD | Base URL for the environment |
| global.host | string | Set by Argo CD | Host name for ingress |
Expand Down
6 changes: 3 additions & 3 deletions applications/ssotap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ cadc-tap:
# -- What type of backend?
backend: "pg"

# -- Name of the service from Gafaelfawr's perspective
service: "ssotap"

pg:
# -- Postgres hostname:port to connect to
host: "usdf-pg-catalogs.slac.stanford.edu:5432"
Expand All @@ -24,9 +27,6 @@ cadc-tap:
# -- Name of the Kubernetes `ServiceAccount`, used for CloudSQL access
name: "ssotap"

# -- Name of the service from Gafaelfawr's perspective
service: "ssotap"

# The following will be set by parameters injected by Argo CD and should not
# be set in the individual environment values files.
global:
Expand Down
2 changes: 1 addition & 1 deletion applications/tap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ IVOA TAP service
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cadc-tap.config.backend | string | `"qserv"` | What type of backend? |
| cadc-tap.config.serviceName | string | `"tap"` | Name of the service from Gafaelfawr's perspective |
| cadc-tap.config.vaultSecretName | string | `"tap"` | Vault secret name: the final key in the vault path |
| cadc-tap.ingress.path | string | `"tap"` | Ingress path that should be routed to this service |
| cadc-tap.serviceAccount.name | string | `"tap"` | Name of the Kubernetes `ServiceAccount`, used for CloudSQL access |
| cadc-tap.serviceName | string | `"tap"` | Name of the service from Gafaelfawr's perspective |
| global.baseUrl | string | Set by Argo CD | Base URL for the environment |
| global.host | string | Set by Argo CD | Host name for ingress |
| global.vaultSecretsPath | string | Set by Argo CD | Base path for Vault secrets |
6 changes: 3 additions & 3 deletions applications/tap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ cadc-tap:
# -- Vault secret name: the final key in the vault path
vaultSecretName: "tap"

# -- Name of the service from Gafaelfawr's perspective
serviceName: "tap"

serviceAccount:
# -- Name of the Kubernetes `ServiceAccount`, used for CloudSQL access
name: "tap"

# -- Name of the service from Gafaelfawr's perspective
serviceName: "tap"

# The following will be set by parameters injected by Argo CD and should not
# be set in the individual environment values files.
global:
Expand Down

0 comments on commit 6353977

Please sign in to comment.