Skip to content

Commit

Permalink
Merge pull request #12 from OpenLiberty/issue/9-minor-fixes
Browse files Browse the repository at this point in the history
Fix helm link and command
  • Loading branch information
proubatsis authored Mar 12, 2019
2 parents d6b1cc2 + cebd29a commit 129d631
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ When tagging and pushing your images, remeber to subtitute `[your-namespace]` fo

=== Deploying the microservices

https://helm.sh/[Helm] is a package manager for {kube}. It allows you to create a package called a chart. You can install a chart on your cluster as a release and then manage the release using Helm.
https://helm.sh/[Helm^] is a package manager for {kube}. It allows you to create a package called a chart. You can install a chart on your cluster as a release and then manage the release using Helm.

// Setup Tiller for IKS
Set up Role Based Access Control (RBAC) to give Helm's Tiller server admin access to your cluster. Deploy the service account and cluster role binding required for the Tiller.
Expand Down Expand Up @@ -616,6 +616,9 @@ docker push registry.ng.bluemix.net/[your-namespace]/name:2.0-SNAPSHOT

Use Helm to re-deploy the `name` microservice.

****
[system]#*{linux} | {mac}*#
[role=command]
```
helm upgrade \
Expand All @@ -627,6 +630,21 @@ helm upgrade \
name-app ibm-charts/ibm-open-liberty
```
[system]#*{win}*#
[role=command]
```
helm upgrade ^
--set image.repository=registry.ng.bluemix.net/[your-namespace]/name ^
--set image.tag=2.0-SNAPSHOT ^
--set service.port=9080 ^
--set service.targetPort=9080 ^
--set ssl.enabled=false ^
name-app ibm-charts/ibm-open-liberty
```
****

Use the following command to find the name of the pod running the `name` microservice.

[role=command]
Expand Down

0 comments on commit 129d631

Please sign in to comment.