Skip to content

Commit

Permalink
values: replace dns name for the ingresses (#633)
Browse files Browse the repository at this point in the history
* replace dns name for the ingresses
  • Loading branch information
ypoplavs authored Sep 19, 2023
1 parent 92d41b4 commit 9be7807
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions charts/testkube/values-develop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ testkube-api:
path: /results/(v\d/.*)
hosts:
- dev.testkube.io
- demo.testkube.dev
tlsenabled: "true"
tls: # < placing a host in the TLS config will indicate a certificate should be created
- hosts:
- dev.testkube.io
- demo.testkube.dev
secretName: testkube-prod-cert-secret
cliIngress:
enabled: false
Expand All @@ -200,11 +200,11 @@ testkube-api:
scopes: ""
path: /results/(v\d/.*)
hosts:
- dev.testkube.io
- demo.testkube.dev
tlsenabled: "false"
tls: # < placing a host in the TLS config will indicate a certificate should be created
- hosts:
- dev.testkube.io
- demo.testkube.dev
secretName: testkube-prod-cert-secret
storage:
endpoint: ""
Expand Down Expand Up @@ -327,13 +327,13 @@ testkube-dashboard:
acme.cert-manager.io/http01-edit-in-place: "true"
path: /
hosts:
- dev.testkube.io
- demo.testkube.dev
tlsenabled: "true"
tls: # < placing a host in the TLS config will indicate a certificate should be created
- hosts:
- dev.testkube.io
- demo.testkube.dev
secretName: testkube-prod-cert-secret
apiServerEndpoint: "dev.testkube.io/results" #get the address of the endpoint or set it using helm
apiServerEndpoint: "demo.testkube.dev/results" #get the address of the endpoint or set it using helm
disableTelemetry: true
# use the latest CRDs from testkube-operator for the UI validation
crdRevision: develop
Expand All @@ -354,7 +354,7 @@ testkube-dashboard:
githubOrg: ""
cookieSecret: ""
cookieSecure: "false"
redirectUrl: "http://develop.testkube.io/oauth2/callback"
redirectUrl: "http://demo.testkube.dev/oauth2/callback"
priorityClassName: "highest-priority"

##Test Connection pod
Expand Down
12 changes: 6 additions & 6 deletions charts/testkube/values-stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,11 @@ testkube-api:
path: /results/(v\d/.*)
hosts:
- integration.testkube.io
- demo.testkube.xyz
tlsenabled: "true"
tls: # < placing a host in the TLS config will indicate a certificate should be created
- hosts:
- integration.testkube.io
- demo.testkube.xyz
secretName: testkube-demo-cert-secret
cliIngress:
enabled: false
Expand Down Expand Up @@ -329,13 +329,13 @@ testkube-dashboard:
acme.cert-manager.io/http01-edit-in-place: "true"
path: /
hosts:
- integration.testkube.io
- demo.testkube.xyz
tlsenabled: "true"
tls: # < placing a host in the TLS config will indicate a certificate should be created
- hosts:
- integration.testkube.io
- demo.testkube.xyz
secretName: testkube-demo-cert-secret
apiServerEndpoint: "integration.testkube.io/results" #get the address of the endpoint or set it using helm
apiServerEndpoint: "demo.testkube.xyz/results" #get the address of the endpoint or set it using helm
disableTelemetry: true
oauth2:
enabled: false
Expand All @@ -354,7 +354,7 @@ testkube-dashboard:
githubOrg: ""
cookieSecret: ""
cookieSecure: "false"
redirectUrl: "http://integration.testkube.io/oauth2/callback"
redirectUrl: "http://demo.testkube.xyz/oauth2/callback"
priorityClassName: "highest-priority"

##Test Connection pod
Expand Down

0 comments on commit 9be7807

Please sign in to comment.