Skip to content

Commit

Permalink
Update readmes and pins for helm3 support (pulumi#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone authored Nov 18, 2019
1 parent 1fcae28 commit ffaee10
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion aws-ts-eks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you'd like to follow the optional instructions in step 7 in order to deploy a
also need to set up the Helm client:

1. [Install the Helm client binaries](https://docs.helm.sh/using_helm/#installing-helm)
2. Initialize the Helm client:
2. If you are using Helm v2, initialize the Helm client:

```bash
$ helm init --client-only
Expand Down
7 changes: 7 additions & 0 deletions azure-ts-aks-helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,19 @@ We will be deploying to Azure, so you will need an Azure account. If you don't h
This example deploys a Helm Chart from [Bitnami's Helm chart repository](https://github.com/bitnami/charts), so you
will need to [install the Helm CLI](https://docs.helm.sh/using_helm/#installing-helm) and configure it:

If you are using Helm v2:
```bash
$ helm init --client-only
$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm repo update
```

If you are using Helm v3:
```bash
$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm repo update
```

# Running the Example

After cloning this repo, `cd` into it and run these commands. A Kubernetes cluster and Apache web server will appear!
Expand Down
2 changes: 1 addition & 1 deletion azure-ts-aks-helm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dependencies": {
"@pulumi/azure": "^1.0.0",
"@pulumi/azuread": "^1.0.0",
"@pulumi/kubernetes": "^1.0.0",
"@pulumi/kubernetes": "^1.3.1",
"@pulumi/pulumi": "^1.0.0"
},
"license": "Apache-2.0"
Expand Down
7 changes: 7 additions & 0 deletions azure-ts-aks-keda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,19 @@ We will be deploying to Azure, so you will need an Azure account. If you don't h
This example deploys a Helm Chart from Kedacore Helm chart repository, so you
will need to [install the Helm CLI](https://docs.helm.sh/using_helm/#installing-helm) and configure it:

If you are using Helm v2:
```bash
$ helm init --client-only
$ helm repo add kedacore https://kedacore.azureedge.net/helm
$ helm repo update
```

If you are using Helm v3:
```
$ helm repo add kedacore https://kedacore.azureedge.net/helm
$ helm repo update
```

# Running the Example

After cloning this repo, `cd` into it and run these commands.
Expand Down
2 changes: 1 addition & 1 deletion azure-ts-aks-keda/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"@pulumi/azure": "^1.0.0",
"@pulumi/azuread": "^1.0.0",
"@pulumi/docker": "latest",
"@pulumi/kubernetes": "^1.0.0",
"@pulumi/kubernetes": "^1.3.1",
"@pulumi/pulumi": "^1.0.0",
"@pulumi/random": "^1.0.0",
"@pulumi/tls": "latest"
Expand Down
10 changes: 2 additions & 8 deletions kubernetes-ts-helm-wordpress/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,11 @@ Helm Chart and submit the expanded YAML to the cluster.

## Running the App

Use the [Helm installation guide](https://docs.helm.sh/using_helm/#installing-helm) to install the
Use the [Helm installation guide](https://helm.sh/docs/intro/install/) to install the
`helm` CLI. On macOS this might look something like:

```sh
brew install kubernetes-helm
```

Once `helm` is installed, initialize it with:

```sh
helm init --client-only
brew install helm
```

If you haven't already, follow the steps in [Pulumi Installation and
Expand Down
2 changes: 1 addition & 1 deletion kubernetes-ts-helm-wordpress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
},
"dependencies": {
"@pulumi/pulumi": "^1.0.0",
"@pulumi/kubernetes": "^1.0.0"
"@pulumi/kubernetes": "^1.3.1"
}
}
2 changes: 1 addition & 1 deletion kubernetes-ts-staged-rollout-with-prometheus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
},
"dependencies": {
"@pulumi/pulumi": "^1.0.0",
"@pulumi/kubernetes": "^1.0.0"
"@pulumi/kubernetes": "^1.3.1"
}
}

0 comments on commit ffaee10

Please sign in to comment.