Skip to content

Commit

Permalink
Set Leo version to 0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mjasion committed Aug 10, 2023
1 parent be785b6 commit 9682082
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/studio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.19
version: 0.3.1
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
Expand Down
30 changes: 23 additions & 7 deletions charts/studio/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# studio

![Version: 0.2.19](https://img.shields.io/badge/Version-0.2.19-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.21.0](https://img.shields.io/badge/AppVersion-v2.21.0-informational?style=flat-square)
![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.21.0](https://img.shields.io/badge/AppVersion-v2.21.0-informational?style=flat-square)

A Helm chart for Kubernetes

Expand Down Expand Up @@ -116,10 +116,8 @@ A Helm chart for Kubernetes
| studioBackend.autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| studioBackend.envFromSecret | string | `""` | Studio: The name of an existing Secret that contains sensitive environment variables passed to backend pods. |
| studioBackend.envVars | object | `{}` | Studio: Additional environment variables for backend pods |
| studioBackend.fullnameOverride | string | `""` | |
| studioBackend.image.pullPolicy | string | `"IfNotPresent"` | |
| studioBackend.image.repository | string | `"docker.iterative.ai/studio-backend"` | |
| studioBackend.nameOverride | string | `""` | |
| studioBackend.nodeSelector | object | `{}` | |
| studioBackend.podAnnotations | object | `{}` | |
| studioBackend.podSecurityContext | object | `{}` | |
Expand All @@ -139,8 +137,6 @@ A Helm chart for Kubernetes
| studioBeat.autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| studioBeat.envFromSecret | string | `""` | Studio: The name of an existing Secret that contains sensitive environment variables passed to beat pods. |
| studioBeat.envVars | object | `{}` | Studio: Additional environment variables for beat pods |
| studioBeat.fullnameOverride | string | `""` | |
| studioBeat.nameOverride | string | `""` | |
| studioBeat.nodeSelector | object | `{}` | |
| studioBeat.podAnnotations | object | `{}` | |
| studioBeat.podSecurityContext | object | `{}` | |
Expand All @@ -151,6 +147,28 @@ A Helm chart for Kubernetes
| studioBeat.resources.requests.memory | string | `"128Mi"` | |
| studioBeat.securityContext | object | `{}` | |
| studioBeat.tolerations | list | `[]` | |
| studioLeo.affinity | object | `{}` | |
| studioLeo.autoscaling.enabled | bool | `false` | |
| studioLeo.autoscaling.maxReplicas | int | `1` | |
| studioLeo.autoscaling.minReplicas | int | `1` | |
| studioLeo.autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| studioLeo.envFromSecret | string | `""` | Studio: The name of an existing Secret that contains sensitive environment variables passed to leo pods. |
| studioLeo.envVars | object | `{}` | Studio: Additional environment variables for leo pods |
| studioLeo.image.pullPolicy | string | `"IfNotPresent"` | |
| studioLeo.image.repository | string | `"docker.iterative.ai/leo-server"` | |
| studioLeo.image.tag | string | `"v0.0.13"` | |
| studioLeo.nodeSelector | object | `{}` | |
| studioLeo.podAnnotations | object | `{}` | |
| studioLeo.podSecurityContext | object | `{}` | |
| studioLeo.replicaCount | int | `1` | |
| studioLeo.resources.limits.cpu | string | `"500m"` | |
| studioLeo.resources.limits.memory | string | `"1Gi"` | |
| studioLeo.resources.requests.cpu | string | `"100m"` | |
| studioLeo.resources.requests.memory | string | `"512Mi"` | |
| studioLeo.securityContext | object | `{}` | |
| studioLeo.service.port | int | `8181` | |
| studioLeo.service.type | string | `"ClusterIP"` | |
| studioLeo.tolerations | list | `[]` | |
| studioUi.affinity | object | `{}` | |
| studioUi.autoscaling.enabled | bool | `false` | |
| studioUi.autoscaling.maxReplicas | int | `5` | |
Expand Down Expand Up @@ -181,8 +199,6 @@ A Helm chart for Kubernetes
| studioWorker.autoscaling.targetCPUUtilizationPercentage | int | `80` | |
| studioWorker.envFromSecret | string | `""` | Studio: The name of an existing Secret that contains sensitive environment variables passed to worker pods. |
| studioWorker.envVars | object | `{}` | Studio: Additional environment variables for worker pods |
| studioWorker.fullnameOverride | string | `""` | |
| studioWorker.nameOverride | string | `""` | |
| studioWorker.nodeSelector | object | `{}` | |
| studioWorker.podAnnotations | object | `{}` | |
| studioWorker.podSecurityContext | object | `{}` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/studio/templates/configmap-studio-leo.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{.Release.Name}}}-studio-leo
name: {{.Release.Name}}-studio-leo
data:
{{- with .Values.studioLeo.envVars}}
{{- toYaml . | nindent 2 }}
Expand Down
2 changes: 1 addition & 1 deletion charts/studio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ studioLeo:
repository: docker.iterative.ai/leo-server
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
# tag: "v1.34.0"
tag: "v0.0.13"

service:
type: ClusterIP
Expand Down

0 comments on commit 9682082

Please sign in to comment.