Skip to content
This repository was archived by the owner on Nov 10, 2019. It is now read-only.

Commit 4de36cd

Browse files
authored
Update README.md
1 parent a10e413 commit 4de36cd

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

incubator/helm/README.md

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -58,38 +58,3 @@ Add Kubernetes integration to Codefresh: `> Account Settings > Integration > Kub
5858

5959
To install a chart from a private repository, add your repository in Codefresh, and inject it into the pipeline by selecting it under "Environment Variables" -> "Import from shared configuration".
6060
Then you can simple select the chart with the `CHART_NAME` variable. No additional configuration needed.
61-
62-
## Example
63-
64-
The example below will run `helm upgrade` using Helm chart with the name `mychart` located in `https://helmrepo.codefresh.io/codefresh/helm` Helm chart repository using the `myrelease` Helm release name against `mycluster` Kubernetes cluster in the `mynamespace` Kubernetes Namespace.
65-
66-
```text
67-
CHART_NAME=mychart
68-
RELEASE_NAME=myrelease
69-
KUBE_CONTEXT=mycluster
70-
NAMESPACE=mynamespace
71-
CHART_REPO_URL=https://helmrepo.codefresh.io/codefresh/helm
72-
```
73-
74-
```yaml
75-
---
76-
version: '1.0'
77-
78-
steps:
79-
80-
...
81-
82-
Helm Upgrade:
83-
title: Helm Upgrade
84-
image: 'codefresh/plugin-helm:2.8.0'
85-
environment:
86-
- CHART_NAME=${{CHART_NAME}}
87-
- RELEASE_NAME=${{RELEASE_NAME}}
88-
- KUBE_CONTEXT=${{KUBE_CONTEXT}}
89-
- NAMESPACE=${{NAMESPACE}}
90-
- DEBUG_CHART=${{DEBUG_CHART}}
91-
- CHART_REPO_URL=${{CHART_REPO_URL}}
92-
93-
...
94-
95-
```

0 commit comments

Comments
 (0)