* helmVersion: 3.0.0

* helmVersion: 3.0.0

* remove `helm init`

* remove `helm init`

* update with helm3
This commit is contained in:
Mathieu Benoit 2019-11-21 16:10:38 -05:00 коммит произвёл GitHub
Родитель 6bb8dac874
Коммит 841578d73f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 4 добавлений и 11 удалений

Просмотреть файл

@ -194,12 +194,12 @@ error while releasing: could not upgrade release: rpc error: code = Unknown desc
if that happens, you need to delete that failed deployment by running the following command, replacing `parrot` with the failed deployment name:
```sh
helm delete --purge parrot
helm uninstall parrot -n phippyandfriends
```
## Credits
Some awesome people worked on the Phippy and Friends demo. [Stella Lin]() brought the idea to [Brady Gaster](), who then got a **ton** of help from [Ralph Squillace]() and [Ahmed Sabbour](http://twitter.com/sabbour) to bring it to life and [Mathieu Benoit](http://github.com/mathieu-benoit) for his Azure DevOps build pipeline. As mentioned earlier, Phippy and Friends was originally inspired by a blog post written by [Matt](https://twitter.com/technosophos) [Butcher](http://technosophos.com/). Phippy and friends were conceived by Matt Butcher, Karen Chu, and Bailey Beougher and are licensed by the CNCF under the CC-BY license. More info at phippy.io. Goldie the Gopher is based on the Go Gopher by Renee French.
Some awesome people worked on the Phippy and Friends demo. [Stella Lin]() brought the idea to [Brady Gaster](), who then got a **ton** of help from [Ralph Squillace]() and [Ahmed Sabbour](http://twitter.com/sabbour) to bring it to life and [Mathieu Benoit](http://github.com/mathieu-benoit) for his Azure DevOps pipelines. As mentioned earlier, Phippy and Friends was originally inspired by a blog post written by [Matt](https://twitter.com/technosophos) [Butcher](http://technosophos.com/). Phippy and friends were conceived by Matt Butcher, Karen Chu, and Bailey Beougher and are licensed by the CNCF under the CC-BY license. More info at [phippy.io](http://phippy.io). Goldie the Gopher is based on the Go Gopher by Renee French.
You can help too, by submitting a pull request and adding your own contributions. When you do, make sure to add your contributions' summary to this section, too!

Просмотреть файл

@ -15,11 +15,6 @@ steps:
az aks get-credentials \
-n $(aks) \
-g $(aks)
helm init \
--upgrade \
--wait \
--service-account tiller \
--force-upgrade
helm repo add \
$(registryName) \
https://$(registryServerName)/helm/v1/repo \

Просмотреть файл

@ -2,6 +2,6 @@ parameters:
projectName: ''
variables:
helmVersion: 2.16.1
helmVersion: 3.0.0
registryServerName: '$(registryName).azurecr.io'
projectName: ${{ parameters.projectName }}

Просмотреть файл

@ -24,8 +24,6 @@ steps:
helmVersionToInstall: $(helmVersion)
- bash: |
cd $(projectName)
helm init \
--client-only
helm package \
--app-version $(imageTag) \
charts/$(projectName)

Просмотреть файл

@ -2,7 +2,7 @@ parameters:
projectName: ''
variables:
helmVersion: 2.16.1
helmVersion: 3.0.0
registryServerName: '$(registryName).azurecr.io'
projectName: ${{ parameters.projectName }}
imageName: ${{ parameters.projectName }}