Skip to content

Commit

Permalink
[stable/hazelcast-jet] Update README (helm#108) (helm#21727)
Browse files Browse the repository at this point in the history
* Update README (helm#108)

Signed-off-by: devOpsHelm <devops+1@hazelcast.com>

* Bump up Hazelcast Jet Chart version

Signed-off-by: Rafal Leszko <rafal@hazelcast.com>

Co-authored-by: Rafal Leszko <rafal@hazelcast.com>
Signed-off-by: Miguel Mingorance <miguel.mingorance@deliveryhero.com>
  • Loading branch information
2 people authored and Miguel Mingorance committed Aug 28, 2020
1 parent 45117ec commit 67a68cf
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 7 deletions.
2 changes: 1 addition & 1 deletion stable/hazelcast-jet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ tillerVersion: ">=2.7.2"
kubeVersion: ">=1.9.0-0"
description: Hazelcast Jet is an application embeddable, distributed computing engine built on top of Hazelcast In-Memory Data Grid (IMDG). With Hazelcast IMDG providing storage functionality, Hazelcast Jet performs parallel execution to enable data-intensive applications to operate in near real-time.
name: hazelcast-jet
version: 1.5.0
version: 1.5.1
keywords:
- hazelcast
- jet
Expand Down
43 changes: 37 additions & 6 deletions stable/hazelcast-jet/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,17 @@ ifeval::["{repo}"=="hazelcast/charts"]
----
$ helm repo add hazelcast https://hazelcast.github.io/charts/
$ helm repo update
$ helm install hazelcast/hazelcast-jet
$ helm install my-release hazelcast/hazelcast-jet # Helm 3
$ helm install --name my-release hazelcast/hazelcast-jet # Helm 2
----
endif::[]


ifeval::["{repo}"=="helm/charts"]
[source,bash]
----
$ helm install stable/hazelcast-jet
$ helm install my-release stable/hazelcast-jet # Helm 3
$ helm install --name my-release stable/hazelcast-jet # Helm 2
----
endif::[]

Expand All @@ -49,14 +51,16 @@ To install the chart with the release name `+my-release+`:
ifeval::["{repo}"=="hazelcast/charts"]
[source,bash]
----
$ helm install --name my-release hazelcast/hazelcast-jet
$ helm install my-release hazelcast/hazelcast-jet # Helm 3
$ helm install --name my-release hazelcast/hazelcast-jet # Helm 2
----
endif::[]

ifeval::["{repo}"=="helm/charts"]
[source,bash]
----
$ helm install --name my-release stable/hazelcast-jet
$ helm install my-release stable/hazelcast-jet # Helm 3
$ helm install --name my-release stable/hazelcast-jet # Helm 2
----
endif::[]

Expand Down Expand Up @@ -297,6 +301,12 @@ Specify each parameter using the `+--set key=value[,key=value]+` argument to
ifeval::["{repo}"=="hazelcast/charts"]
[source,bash]
----
# Helm 3
$ helm install my-release \
--set cluster.memberCount=3,serviceAccount.create=false \
hazelcast/hazelcast-jet
# Helm 2
$ helm install --name my-release \
--set cluster.memberCount=3,serviceAccount.create=false \
hazelcast/hazelcast-jet
Expand All @@ -306,6 +316,13 @@ endif::[]
ifeval::["{repo}"=="helm/charts"]
[source,bash]
----
# Helm 3
$ helm install my-release \
--set cluster.memberCount=3,serviceAccount.create=false \
stable/hazelcast-jet
# Helm 2
$ helm install --name my-release \
--set cluster.memberCount=3,serviceAccount.create=false \
stable/hazelcast-jet
Expand All @@ -321,14 +338,16 @@ provided while installing the chart. For example,
ifeval::["{repo}"=="hazelcast/charts"]
[source,bash]
----
$ helm install --name my-release -f values.yaml hazelcast/hazelcast-jet
$ helm install my-release -f values.yaml hazelcast/hazelcast-jet # Helm 3
$ helm install --name my-release -f values.yaml hazelcast/hazelcast-jet # Helm 2
----
endif::[]

ifeval::["{repo}"=="helm/charts"]
[source,bash]
----
$ helm install --name my-release -f values.yaml stable/hazelcast-jet
$ helm install my-release -f values.yaml stable/hazelcast-jet # Helm 3
$ helm install --name my-release -f values.yaml stable/hazelcast-jet # Helm 2
----
endif::[]

Expand Down Expand Up @@ -384,6 +403,12 @@ For example,
ifeval::["{repo}"=="hazelcast/charts"]
[source,bash]
----
# Helm 3
$ helm install my-jet-release \
--set jet.yaml.hazelcast-jet.instance.backup-count=2,jet.yaml.hazelcast.network.kubernetes.service-name=jet-service \
hazelcast/hazelcast-jet
# Helm 2
$ helm install --name my-jet-release \
--set jet.yaml.hazelcast-jet.instance.backup-count=2,jet.yaml.hazelcast.network.kubernetes.service-name=jet-service \
hazelcast/hazelcast-jet
Expand All @@ -393,6 +418,12 @@ endif::[]
ifeval::["{repo}"=="helm/charts"]
[source,bash]
----
# Helm 3
$ helm install my-jet-release \
--set jet.yaml.hazelcast-jet.instance.backup-count=2,jet.yaml.hazelcast.network.kubernetes.service-name=jet-service \
stable/hazelcast-jet
# Helm 2
$ helm install --name my-jet-release \
--set jet.yaml.hazelcast-jet.instance.backup-count=2,jet.yaml.hazelcast.network.kubernetes.service-name=jet-service \
stable/hazelcast-jet
Expand Down

0 comments on commit 67a68cf

Please sign in to comment.