Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: minor chart fix #18

Merged
merged 7 commits into from
Jun 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ jobs:
else
echo "There are no Git diffs in the /helm-chart folder."
fi
- name: Install Helm Docs
uses: envoy/install-helm-docs@v1.0.0
with:
version: 1.11.0
- name: Helm lint and template
run: |
make helm
Expand Down
3 changes: 1 addition & 2 deletions helm-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ apiVersion: v2
name: piper
description: A Helm chart for Piper
type: application
version: 0.1.0
appVersion: "0.1.0"
version: 1.0.1
6 changes: 3 additions & 3 deletions helm-chart/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# piper

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square)
![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A Helm chart for Piper

Expand Down Expand Up @@ -31,10 +31,10 @@ A Helm chart for Piper
| nameOverride | string | `""` | String to partially override "piper.fullname" template |
| nodeSelector | object | `{}` | [Node selector] |
| piper.argoWorkflows.crdCreation | bool | `true` | Whether create Workflow CRD or send direct commands to Argo Workflows server. |
| piper.argoWorkflows.server.address | string | `"argo-workflows-server.workflows.svc.cluster.local"` | The DNS address of Argo Workflow server that Piper can address. |
| piper.argoWorkflows.server.address | string | `""` | The DNS address of Argo Workflow server that Piper can address. |
| piper.argoWorkflows.server.existingSecret | string | `nil` | |
| piper.argoWorkflows.server.namespace | string | `""` | The namespace in which the Workflow CRD will be created. |
| piper.argoWorkflows.server.token | string | `nil` | This will create a secret named <RELEASE_NAME>-token and with the key 'token' |
| piper.argoWorkflows.server.token | string | `""` | This will create a secret named <RELEASE_NAME>-token and with the key 'token' |
| piper.gitProvider.existingSecret | string | `nil` | |
| piper.gitProvider.name | string | `"github"` | Name of your git provider (github/gitlab/bitbucket). for now, only github supported. |
| piper.gitProvider.organization.name | string | `""` | Name of your Git Organization |
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ piper:
# -- The namespace in which the Workflow CRD will be created.
namespace: ""
# -- The DNS address of Argo Workflow server that Piper can address.
address: "" #argo-workflows-server.workflows.svc.cluster.local
address: ""
# -- The token for authentication with Argo Workflows server.
# -- This will create a secret named <RELEASE_NAME>-token and with the key 'token'
token: ""
Expand Down