Skip to content

Commit 2308f65

Browse files
authored
Change hostname to edu (#813)
* updated * typo * missed more spots
1 parent aa55a29 commit 2308f65

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

deployments/kubernetes/charts/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ helm repo add bitnami https://charts.bitnami.com/bitnami
77
helm dep build
88
```
99

10-
The chart has some common values, if you want to run this on your local machine you can use the following values (*.clowder2.ncsa.cloud is an DNS record that points to 127.0.0.1):
10+
The chart has some common values, if you want to run this on your local machine you can use the following values (*
11+
.clowder2.ncsa.illinois.edu is an DNS record that points to 127.0.0.1):
1112

1213
```yaml
1314
minio:
1415
ingress:
15-
hostname: minio.clowder2.ncsa.cloud
16+
hostname: minio.clowder2.ncsa.illinois.edu
1617
apiIngress:
17-
hostname: minio.clowder2.ncsa.cloud
18+
hostname: minio.clowder2.ncsa.illinois.edu
1819

1920
rabbitmq:
2021
ingress:
21-
hostname: rabbitmq.clowder2.ncsa.cloud
22+
hostname: rabbitmq.clowder2.ncsa.illinois.edu
2223
```
2324
2425
Now you can install (or upgrade) clowder using:
26+
2527
```bash
2628
helm upgrade --install --namespace clowder2 --create-namespace --values local.yaml clowder2 .
2729
```
2830

29-
30-
3131
# Docker Desktop
3232

3333
You will need an ingress controller, I like Traefik as my ingress controller. You install this with:
@@ -47,7 +47,7 @@ spec:
4747
entryPoints:
4848
- web
4949
routes:
50-
- match: Host(`traefik.clowder2.ncsa.cloud`)
50+
- match: Host(`traefik.clowder2.ncsa.illinois.edu`)
5151
kind: Rule
5252
services:
5353
- name: api@internal

deployments/kubernetes/charts/clowder2/dashboard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
entryPoints:
88
- web
99
routes:
10-
- match: Host(`traefik.clowder2.ncsa.cloud`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`))
10+
- match: Host(`traefik.clowder2.ncsa.illinois.edu`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`))
1111
kind: Rule
1212
services:
1313
- name: api@internal

deployments/kubernetes/charts/clowder2/files/realm.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,16 +285,16 @@
285285
{
286286
"id": "54c87ecc-a8ef-45a1-9ec3-b4a42ddb8b7a",
287287
"clientId": "clowder2-backend",
288-
"rootUrl": "https://clowder2.software-dev.ncsa.cloud",
288+
"rootUrl": "https://clowder2.software-dev.ncsa.illinois.edu",
289289
"surrogateAuthRequired": false,
290290
"enabled": true,
291291
"alwaysDisplayInConsole": false,
292292
"clientAuthenticatorType": "client-secret",
293293
"redirectUris": [
294-
"https://clowder2.software-dev.ncsa.cloud/api/v2/auth"
294+
"https://clowder2.software-dev.ncsa.illinois.edu/api/v2/auth"
295295
],
296296
"webOrigins": [
297-
"https://clowder2.software-dev.ncsa.cloud"
297+
"https://clowder2.software-dev.ncsa.illinois.edu"
298298
],
299299
"notBefore": 0,
300300
"bearerOnly": false,
@@ -1900,7 +1900,7 @@
19001900
"oauth2DeviceCodeLifespan": "600",
19011901
"parRequestUriLifespan": "60",
19021902
"clientSessionMaxLifespan": "0",
1903-
"frontendUrl": "https://clowder2.software-dev.ncsa.cloud/keycloak",
1903+
"frontendUrl": "https://clowder2.software-dev.ncsa.illinois.edu/keycloak",
19041904
"acr.loa.map": "[]"
19051905
},
19061906
"keycloakVersion": "19.0.3",
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# helm upgrade --install --namespace clowder2 --create-namespace --values local.yaml clowder2 .
22

3-
hostname: clowder2.ncsa.cloud
3+
hostname: clowder2.ncsa.illinois.edu
44

55
minio:
66
auth:
77
rootUser: clowder
88
rootPassword: ilikecats
99
ingress:
10-
hostname: minio.clowder2.ncsa.cloud
10+
hostname: minio.clowder2.ncsa.illinois.edu
1111
apiIngress:
12-
hostname: minio.clowder2.ncsa.cloud
12+
hostname: minio.clowder2.ncsa.illinois.edu
1313

1414
rabbitmq:
1515
ingress:
16-
hostname: rabbitmq.clowder2.ncsa.cloud
16+
hostname: rabbitmq.clowder2.ncsa.illinois.edu
1717

1818
keycloak:
1919
ingress:
20-
hostname: clowder2.ncsa.cloud
20+
hostname: clowder2.ncsa.illinois.edu

deployments/kubernetes/charts/radiant.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# helm upgrade --install --namespace clowder2 --create-namespace --values radiant.yaml clowder2 clowder2
22

3-
hostname: clowder2.software-dev.ncsa.cloud
3+
hostname: clowder2.software-dev.ncsa.illinois.edu
44

55
minio:
66
auth:
@@ -10,13 +10,13 @@ minio:
1010
storageClass: nfs-taiga
1111
size: 20Gi
1212
ingress:
13-
hostname: minio.clowder2.software-dev.ncsa.cloud
13+
hostname: minio.clowder2.software-dev.ncsa.illinois.edu
1414
apiIngress:
15-
hostname: minio.clowder2.software-dev.ncsa.cloud
15+
hostname: minio.clowder2.software-dev.ncsa.illinois.edu
1616

1717
rabbitmq:
1818
ingress:
19-
hostname: rabbitmq.clowder2.software-dev.ncsa.cloud
19+
hostname: rabbitmq.clowder2.software-dev.ncsa.illinois.edu
2020
persistence:
2121
storageClass: csi-cinder-sc-retain
2222
size: 8Gi
@@ -38,7 +38,7 @@ elasticsearch:
3838

3939
keycloak:
4040
ingress:
41-
hostname: clowder2.software-dev.ncsa.cloud
41+
hostname: clowder2.software-dev.ncsa.illinois.edu
4242
postgresql:
4343
primary:
4444
persistence:

0 commit comments

Comments
 (0)