Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v3iod] Change locator command to sh (for alpine support) #1035

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions stable/v3iod/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
version: 0.17.0
version: 0.18.0
appVersion: ">=1.9.4"
name: v3iod
description: v3io daemon
Expand All @@ -8,7 +8,5 @@ icon: https://www.iguazio.com/wp-content/uploads/2019/10/Iguazio-Logo.png
sources:
- https://github.com/v3io/v3iod
maintainers:
- name: Igor Makhlin
email: [email protected]
- name: Eran Duchan
email: [email protected]
- name: Iguazio
email: [email protected]
2 changes: 1 addition & 1 deletion stable/v3iod/templates/v3io-locator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
- name: rest-locator
image: {{ .Values.locator.image.repository }}:{{ .Values.locator.image.tag }}
imagePullPolicy: {{ .Values.locator.image.pullPolicy | quote }}
command: ["/bin/bash", "-c"]
command: ["/bin/sh", "-c"]
args:
- locatorctl --namespace=$CURRENT_NAMESPACE
ports:
Expand Down
2 changes: 1 addition & 1 deletion stable/v3iod/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ daymanV3ioConfig:
locator:
image:
repository: iguaziodocker/locator
tag: 3.0.0
tag: 5.0.0
pullPolicy: IfNotPresent

resources:
Expand Down