Skip to content

Commit

Permalink
Move all charts into /charts dir
Browse files Browse the repository at this point in the history
Attempting to get helm/charts-releaser to detect changes to our charts
and publish them. It seems the GHA expects this layout.

See discussion:

helm/chart-releaser-action#36

And default dir:

https://github.com/helm/chart-releaser-action/blob/master/action.yml#L14

Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
  • Loading branch information
dfarrell07 committed Nov 13, 2020
1 parent 5906cfb commit 3a23af1
Show file tree
Hide file tree
Showing 39 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ jobs:
- name: Run yamllint
uses: ibiqlik/action-yamllint@v1
with:
file_or_dir: submariner/Chart.yaml submariner/values.yaml submariner-k8s-broker/Chart.yaml submariner-k8s-broker/values.yaml submariner-operator/Chart.yaml submariner-operator/values.yaml
file_or_dir: charts/submariner/Chart.yaml charts/submariner/values.yaml charts/submariner-k8s-broker/Chart.yaml charts/submariner-k8s-broker/values.yaml charts/submariner-operator/Chart.yaml charts/submariner-operator/values.yaml
config_file: .yamllint.yml
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions deploy_helm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function setup_broker() {
else
echo "Installing submariner broker..."
# shellcheck disable=SC2086 # Split on purpose
helm install "${SUBMARINER_BROKER_NS}" ./submariner-k8s-broker \
helm install "${SUBMARINER_BROKER_NS}" ./charts/submariner-k8s-broker \
--create-namespace \
--kube-context "${cluster}" \
--namespace "${SUBMARINER_BROKER_NS}" \
Expand All @@ -43,7 +43,7 @@ function helm_install_subm() {
echo "Installing Submariner..."
# shellcheck disable=SC2086 # Split on purpose
helm --kube-context "${cluster}" install submariner-operator \
./submariner-operator \
./charts/submariner-operator \
--create-namespace \
--namespace "${SUBM_NS}" \
--set ipsec.psk="${SUBMARINER_PSK}" \
Expand Down

0 comments on commit 3a23af1

Please sign in to comment.