-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from cyberark/update-to-1.3.8
Update to v1.3.8
- Loading branch information
Showing
5 changed files
with
34 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Contributing | ||
|
||
## Table of Contents | ||
|
||
- [Releasing](#releasing) | ||
|
||
Majority of the instructions on how to build, develop, and run the code in | ||
this repo is located in the main [README.md](README.md) but this file adds | ||
any additional information for contributing code to this project. | ||
|
||
## Releasing | ||
|
||
To release a new version of this chart: | ||
- Make the appropriate changes | ||
- Update the version number | ||
- Tag the git history with `v##.##.##` version | ||
- Create the release on GitHub for that tag | ||
- Build the helm chart package with `helm package conjur-oss` | ||
- Upload that package to GitHub | ||
- Add that chart to our [Helm charts repo](https://github.com/cyberark/helm-charts) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash -e | ||
|
||
helm install \ | ||
helm install conjur-e2e \ | ||
--set dataKey="$(docker run --rm cyberark/conjur data-key generate)" \ | ||
--set postgres.persistentVolume.create="false" \ | ||
../conjur-oss |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash -e | ||
|
||
helm install \ | ||
helm install conjur-e2e \ | ||
--set dataKey="$(docker run --rm cyberark/conjur data-key generate)" \ | ||
../conjur-oss |