-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[updatecli] Update Epinio UI backend image for Helm Chart chart/epini…
…o-ui (#384) * chore: Update key "epinioUI.image.tag" from file "/tmp/updatecli/gith... ... ub/epinio/helm-charts/chart/epinio-ui/values.yaml" Made with ❤️️ by updatecli * Update Chart.yaml --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Enrico Candino <[email protected]>
- Loading branch information
1 parent
643dc41
commit a1f201b
Showing
2 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
epinioUI: | ||
image: | ||
registry: ghcr.io | ||
repository: epinio/epinio-ui | ||
tag: v1.7.0-0.0.2 | ||
imagePullPolicy: IfNotPresent | ||
uiURL: "" | ||
# Epinio standalone only supports a single theme, either light or dark | ||
theme: "light" | ||
# API URL of epinio instance, for proxied connections, defaults to http://epinio-server.%s.svc.cluster.local" | ||
apiURL: "" | ||
wssURL: "" | ||
dexURL: "" | ||
# Skip checking for valid SSL cert when making requests to `EPINIO_API_URL` | ||
apiSkipSSL: "true" | ||
# version: "" | ||
logLevel: info | ||
# Domain that will serve the UI and be the origin of browser requests, used by CORS process | ||
allowedOrigins: "" | ||
image: | ||
registry: ghcr.io | ||
repository: epinio/epinio-ui | ||
tag: v1.7.1-0.0.1 | ||
imagePullPolicy: IfNotPresent | ||
uiURL: "" | ||
# Epinio standalone only supports a single theme, either light or dark | ||
theme: "light" | ||
# API URL of epinio instance, for proxied connections, defaults to http://epinio-server.%s.svc.cluster.local" | ||
apiURL: "" | ||
wssURL: "" | ||
dexURL: "" | ||
# Skip checking for valid SSL cert when making requests to `EPINIO_API_URL` | ||
apiSkipSSL: "true" | ||
# version: "" | ||
logLevel: info | ||
# Domain that will serve the UI and be the origin of browser requests, used by CORS process | ||
allowedOrigins: "" | ||
ingress: | ||
enabled: true | ||
# The ingressClassName is used to select the ingress controller. If empty no class will be added to the ingresses. | ||
ingressClassName: "" | ||
enabled: true | ||
# The ingressClassName is used to select the ingress controller. If empty no class will be added to the ingresses. | ||
ingressClassName: "" | ||
global: | ||
domain: ui.epinio.dev | ||
tlsIssuer: selfsigned-issuer | ||
dex: | ||
enabled: true | ||
domain: ui.epinio.dev | ||
tlsIssuer: selfsigned-issuer | ||
dex: | ||
enabled: true | ||
dex: | ||
ui: | ||
# secret should be supplied by dex automatically, this is just a fall back | ||
secret: "" | ||
# Defaults to https://epinio.{{ .Values.global.domain }}/auth/verify/ | ||
redirectURI: "" | ||
ui: | ||
# secret should be supplied by dex automatically, this is just a fall back | ||
secret: "" | ||
# Defaults to https://epinio.{{ .Values.global.domain }}/auth/verify/ | ||
redirectURI: "" | ||
volumeMounts: | ||
- name: tmp | ||
mountPath: /tmp | ||
readOnly: false | ||
- name: db | ||
mountPath: /db | ||
readOnly: false | ||
- name: tmp | ||
mountPath: /tmp | ||
readOnly: false | ||
- name: db | ||
mountPath: /db | ||
readOnly: false | ||
# - name: ui | ||
# mountPath: /ui | ||
# subPath: dist | ||
# readOnly: true | ||
|
||
volumes: | ||
- name: tmp | ||
emptyDir: {} | ||
- name: db | ||
emptyDir: {} | ||
- name: tmp | ||
emptyDir: {} | ||
- name: db | ||
emptyDir: {} | ||
# - name: ui | ||
# persistentVolumeClaim: | ||
# claimName: ui |