-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new versions for default grafana and kibana images * fix typo in kibana version * Update appdefaults.go upgrade redis/elastic * Update values.yaml upgrade redis/elastic * update images * update images * upgrade go and dockerfile * change redis and pg * pg16 * reduce pg to 12 * Update values.yaml * Update values.yaml * Update values.yaml * Update values.yaml * Update values.yaml * weekly image * Update values.yaml * change proxy config to secret * update new images * update new images * next-1 bump docker * next-1 bump docker * add minio console ui * ingress console * console route #minor
- Loading branch information
Showing
13 changed files
with
167 additions
and
53 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
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
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,3 +1,3 @@ | ||
imageHub: docker.io/cnvrg | ||
image: nomex:v1.0.0 | ||
imagePullSecretRef: cnvrg-app-registry | ||
image: nomex:v2.0.0 | ||
imagePullSecretRef: cnvrg-app-registry |
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
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
annotations: | ||
nginx.ingress.kubernetes.io/proxy-send-timeout: 18000s | ||
nginx.ingress.kubernetes.io/proxy-read-timeout: 18000s | ||
nginx.ingress.kubernetes.io/proxy-body-size: 5G | ||
mlops.cnvrg.io/default-loader: "true" | ||
mlops.cnvrg.io/own: "true" | ||
mlops.cnvrg.io/updatable: "true" | ||
{{- range $k, $v := .Spec.Annotations }} | ||
{{$k}}: "{{$v}}" | ||
{{- end }} | ||
name: {{ .Spec.Dbs.Minio.SvcName }}-console | ||
namespace: {{.Namespace }} | ||
labels: | ||
{{- range $k, $v := .Spec.Labels }} | ||
{{$k}}: "{{$v}}" | ||
{{- end }} | ||
spec: | ||
ingressClassName: nginx | ||
{{- if and ( isTrue .Spec.Networking.HTTPS.Enabled ) (ne .Spec.Networking.HTTPS.CertSecret "") }} | ||
tls: | ||
- hosts: | ||
- {{ .Spec.Dbs.Minio.SvcName}}{{.Spec.Networking.ClusterDomainPrefix.Prefix}}.{{ .Spec.ClusterDomain }} | ||
secretName: {{ .Spec.Networking.HTTPS.CertSecret }} | ||
{{- end }} | ||
rules: | ||
- host: "{{.Spec.Dbs.Minio.SvcName}}-console{{.Spec.Networking.ClusterDomainPrefix.Prefix}}.{{ .Spec.ClusterDomain }}" | ||
http: | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: {{ .Spec.Dbs.Minio.SvcName }}-console | ||
port: | ||
number: {{ .Spec.Dbs.Minio.Port }} |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
apiVersion: route.openshift.io/v1 | ||
kind: Route | ||
metadata: | ||
annotations: | ||
mlops.cnvrg.io/default-loader: "true" | ||
mlops.cnvrg.io/own: "true" | ||
mlops.cnvrg.io/updatable: "true" | ||
haproxy.router.openshift.io/timeout: {{ .Spec.Networking.Ingress.PerTryTimeout }} | ||
{{- range $k, $v := .Spec.Annotations }} | ||
{{$k}}: "{{$v}}" | ||
{{- end }} | ||
name: {{ .Spec.Dbs.Minio.SvcName }}-console | ||
namespace: {{.Namespace }} | ||
labels: | ||
app: {{.Namespace }} | ||
{{- range $k, $v := .Spec.Labels }} | ||
{{$k}}: "{{$v}}" | ||
{{- end }} | ||
spec: | ||
host: "{{ .Spec.Dbs.Minio.SvcName }}-console{{.Spec.Networking.ClusterDomainPrefix.Prefix}}.{{ .Spec.ClusterDomain }}" | ||
port: | ||
targetPort: {{ .Spec.Dbs.Minio.Port }} | ||
to: | ||
kind: Service | ||
name: {{ .Spec.Dbs.Minio.SvcName }}-console | ||
weight: 100 | ||
{{- if isTrue .Spec.Networking.HTTPS.Enabled }} | ||
tls: | ||
termination: edge | ||
insecureEdgeTerminationPolicy: Redirect | ||
{{- if isTrue .Spec.Networking.Ingress.OcpSecureRoutes }} | ||
certificate: | | ||
{{ printf "%s" .Spec.Networking.HTTPS.Cert | indent 6 }} | ||
key: | | ||
{{ printf "%s" .Spec.Networking.HTTPS.Key | indent 6 }} | ||
{{- end }} | ||
{{- end }} |
Oops, something went wrong.