Skip to content

Commit

Permalink
feat: update client image version to v0.1.86 (#304)
Browse files Browse the repository at this point in the history
Signed-off-by: Gaius <gaius.qi@gmail.com>
  • Loading branch information
gaius-qi authored Jul 13, 2024
1 parent 28f4644 commit 01fe885
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions charts/dragonfly/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: dragonfly
description: Dragonfly is an intelligent P2P based image and file distribution system
icon: https://github.com/dragonflyoss/Dragonfly2/main/docs/images/logo/dragonfly.svg
type: application
version: 1.1.74
version: 1.1.75
appVersion: 2.1.51
keywords:
- dragonfly
Expand All @@ -27,7 +27,7 @@ sources:

annotations:
artifacthub.io/changes: |
- Change probe timeout for client.
- Update client image version to v0.1.86.
artifacthub.io/links: |
- name: Chart Source
Expand All @@ -42,11 +42,11 @@ annotations:
- name: scheduler
image: dragonflyoss/scheduler:v2.1.51
- name: client
image: dragonflyoss/client:v0.1.82
image: dragonflyoss/client:v0.1.86
- name: seed-client
image: dragonflyoss/client:v0.1.82
image: dragonflyoss/client:v0.1.86
- name: dfinit
image: dragonflyoss/dfinit:v0.1.82
image: dragonflyoss/dfinit:v0.1.86
dependencies:
- name: mysql
Expand Down
6 changes: 3 additions & 3 deletions charts/dragonfly/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ helm delete dragonfly --namespace dragonfly-system
| client.dfinit.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy. |
| client.dfinit.image.registry | string | `"docker.io"` | Image registry. |
| client.dfinit.image.repository | string | `"dragonflyoss/dfinit"` | Image repository. |
| client.dfinit.image.tag | string | `"v0.1.82"` | Image tag. |
| client.dfinit.image.tag | string | `"v0.1.86"` | Image tag. |
| client.enable | bool | `true` | Enable client. |
| client.extraVolumeMounts | list | `[{"mountPath":"/var/lib/dragonfly/","name":"storage"},{"mountPath":"/var/log/dragonfly/dfdaemon/","name":"logs"}]` | Extra volumeMounts for dfdaemon. |
| client.extraVolumes | list | `[{"hostPath":{"path":"/var/lib/dragonfly/","type":"DirectoryOrCreate"},"name":"storage"},{"emptyDir":{},"name":"logs"}]` | Extra volumes for dfdaemon. |
Expand All @@ -187,7 +187,7 @@ helm delete dragonfly --namespace dragonfly-system
| client.image.pullSecrets | list | `[]` (defaults to global.imagePullSecrets). | Image pull secrets. |
| client.image.registry | string | `"docker.io"` | Image registry. |
| client.image.repository | string | `"dragonflyoss/client"` | Image repository. |
| client.image.tag | string | `"v0.1.82"` | Image tag. |
| client.image.tag | string | `"v0.1.86"` | Image tag. |
| client.initContainer.image.digest | string | `""` | Image digest. |
| client.initContainer.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy. |
| client.initContainer.image.registry | string | `"docker.io"` | Image registry. |
Expand Down Expand Up @@ -495,7 +495,7 @@ helm delete dragonfly --namespace dragonfly-system
| seedClient.image.pullSecrets | list | `[]` (defaults to global.imagePullSecrets). | Image pull secrets. |
| seedClient.image.registry | string | `"docker.io"` | Image registry. |
| seedClient.image.repository | string | `"dragonflyoss/client"` | Image repository. |
| seedClient.image.tag | string | `"v0.1.82"` | Image tag. |
| seedClient.image.tag | string | `"v0.1.86"` | Image tag. |
| seedClient.initContainer.image.digest | string | `""` | Image digest. |
| seedClient.initContainer.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy. |
| seedClient.initContainer.image.registry | string | `"docker.io"` | Image registry. |
Expand Down
4 changes: 2 additions & 2 deletions charts/dragonfly/templates/client/client-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,13 @@ spec:
protocol: TCP
readinessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=unix://{{ .Values.client.config.download.server.socketPath }}", "-connect-timeout=5s", "-rpc-timeout=5s"]
command: ["/bin/grpc_health_probe", "-addr=unix://{{ .Values.client.config.download.server.socketPath }}"]
initialDelaySeconds: 5
periodSeconds: 30
timeoutSeconds: 5
livenessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=unix://{{ .Values.client.config.download.server.socketPath }}", "-connect-timeout=5s", "-rpc-timeout=5s"]
command: ["/bin/grpc_health_probe", "-addr=unix://{{ .Values.client.config.download.server.socketPath }}"]
initialDelaySeconds: 15
periodSeconds: 30
timeoutSeconds: 5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ spec:
protocol: TCP
readinessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=unix://{{ .Values.seedClient.config.download.server.socketPath }}", "-connect-timeout=5s", "-rpc-timeout=5s"]
command: ["/bin/grpc_health_probe", "-addr=unix://{{ .Values.seedClient.config.download.server.socketPath }}"]
initialDelaySeconds: 5
periodSeconds: 30
timeoutSeconds: 5
livenessProbe:
exec:
command: ["/bin/grpc_health_probe", "-addr=unix://{{ .Values.seedClient.config.download.server.socketPath }}", "-connect-timeout=5s", "-rpc-timeout=5s"]
command: ["/bin/grpc_health_probe", "-addr=unix://{{ .Values.seedClient.config.download.server.socketPath }}"]
initialDelaySeconds: 15
periodSeconds: 30
timeoutSeconds: 5
Expand Down
6 changes: 3 additions & 3 deletions charts/dragonfly/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ seedClient:
# -- Image repository.
repository: dragonflyoss/client
# -- Image tag.
tag: v0.1.82
tag: v0.1.86
# -- Image digest.
digest: ""
# -- Image pull policy.
Expand Down Expand Up @@ -1061,7 +1061,7 @@ client:
# -- Image repository.
repository: dragonflyoss/client
# -- Image tag.
tag: v0.1.82
tag: v0.1.86
# -- Image digest.
digest: ""
# -- Image pull policy.
Expand Down Expand Up @@ -1144,7 +1144,7 @@ client:
# -- Image repository.
repository: dragonflyoss/dfinit
# -- Image tag.
tag: v0.1.82
tag: v0.1.86
# -- Image digest.
digest: ""
# -- Image pull policy.
Expand Down

0 comments on commit 01fe885

Please sign in to comment.