Skip to content

Commit

Permalink
Upgrade to v1.1.0 (#174)
Browse files Browse the repository at this point in the history
* Upgrade to 1.0.0

* Optional extra labels for pod (#164)

Signed-off-by: quicksilver <[email protected]>

* Update README.md (#166)

* Optional extra labels for pod

Signed-off-by: quicksilver <[email protected]>

* Update README.md

Signed-off-by: quicksilver <[email protected]>

* Add extra env variable (#172)

* Add extra env variable

Signed-off-by: quicksilver <[email protected]>

* Update Helm Chart version

Signed-off-by: quicksilver <[email protected]>

* Upgrade milvus app version to v1.1 (#173)

* Upgrade milvus app version to v1.1

Signed-off-by: quicksilver <[email protected]>
  • Loading branch information
jeffoverflow authored May 7, 2021
1 parent 3528feb commit 022f469
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
4 changes: 2 additions & 2 deletions charts/milvus/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v1
name: milvus
appVersion: "1.0.0"
appVersion: "1.1.0"
kubeVersion: "^1.10.0-0"
description: Milvus is an open source similarity search engine for massive-scalefeature vectors.
version: 1.0.1
version: 1.1.0
keywords:
- milvus
- elastic
Expand Down
7 changes: 4 additions & 3 deletions charts/milvus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ The following table lists the configurable parameters of the Milvus chart and th
| `restartPolicy` | Restart policy for all containers | `Always` |
| `initContainerImage` | Init container image | `alpine:3.8` |
| `image.repository` | Image repository | `milvusdb/milvus` |
| `image.tag` | Image tag | `1.0.0-cpu-d030521-1ea92e` |
| `image.tag` | Image tag | `1.1.0-cpu-d050721-5e559c` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Image pull secrets | `{}` |
| `image.resources` | CPU/GPU/Memory resource requests/limits | `{}` |
Expand Down Expand Up @@ -176,11 +176,12 @@ The following table lists the configurable parameters of the Milvus chart and th
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `tolerations` | Toleration labels for pod assignment | `[]` |
| `affinity` | Affinity settings for pod assignment | `{}` |
| `podAnnotations` | Additional pod annotations | `{}` |
| `podLabels` | Optional extra labels for pod | `{}` |
| `podAnnotations` | Optional extra annotations for pod | `{}` |
| `podDisruptionBudget.minAvailable` | Pod disruption minimum available | `unset` |
| `podDisruptionBudget.maxUnavailable` | Pod disruption maximum unavailable | `unset` |
| `mishards.image.repository` | Mishards image repository | `milvusdb/mishards` |
| `mishards.image.tag` | Mishards image tag | `1.0.0` |
| `mishards.image.tag` | Mishards image tag | `1.1.0` |
| `mishards.image.pullPolicy` | Mishards image pull policy | `IfNotPresent` |
| `mishards.replicas` | Number of mishards nodes | `1` |
| `mishards.resources` | Mishards CPU/GPU/Memory resource requests/limits | `{}` |
Expand Down
4 changes: 4 additions & 0 deletions charts/milvus/templates/readonly-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ spec:
{{ toYaml .Values.readinessProbe | indent 10 }}
resources:
{{- toYaml .Values.readonly.resources | nindent 10 }}
{{- if .Values.extraEnv }}
env:
{{ toYaml .Values.extraEnv | indent 8 }}
{{- end }}
volumeMounts:
- name: milvus-data-disk
mountPath: {{ .Values.persistence.mountPath | quote }}
Expand Down
4 changes: 4 additions & 0 deletions charts/milvus/templates/writable-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ spec:
{{ toYaml .Values.readinessProbe | indent 10 }}
resources:
{{- toYaml .Values.image.resources | nindent 10 }}
{{- if .Values.extraEnv }}
env:
{{ toYaml .Values.extraEnv | indent 8 }}
{{- end }}
volumeMounts:
- name: milvus-data-disk
mountPath: {{ .Values.persistence.mountPath | quote }}
Expand Down
8 changes: 6 additions & 2 deletions charts/milvus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ extraContainers: |
# mountPath: /var/lib/milvus/logs
# readOnly: true

extraEnv: []
# - name: SOME_VAR
# value: 'some value'

extraVolumes: []
# - name: extras
# emptyDir: {}
Expand Down Expand Up @@ -175,7 +179,7 @@ logsPersistence:

image:
repository: milvusdb/milvus
tag: 1.0.0-cpu-d030521-1ea92e
tag: 1.1.0-cpu-d050721-5e559c
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
Expand Down Expand Up @@ -222,7 +226,7 @@ serviceAccounts:
mishards:
image:
repository: milvusdb/mishards
tag: 1.0.0
tag: 1.1.0
pullPolicy: IfNotPresent

replicas: 1
Expand Down

0 comments on commit 022f469

Please sign in to comment.