Skip to content

Commit

Permalink
Merge pull request #408 from percona/EVEREST-1514
Browse files Browse the repository at this point in the history
Add embed.FS for Everest Helm chart
  • Loading branch information
mayankshah1607 authored Nov 8, 2024
2 parents e2c88cc + d681e3b commit 7732bc5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/everest-pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:
# Only build a kind cluster if there are chart changes to test.
if: steps.list-changed.outputs.changed == 'true'

- name: Build dependencies
run: |
cd charts/everest
make deps
- name: Basic tests
run: |
# Install the chart
Expand Down
3 changes: 3 additions & 0 deletions charts/everest/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@
.vscode/

Makefile
go.mod
go.sum
helm.go
3 changes: 3 additions & 0 deletions charts/everest/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/percona/percona-helm-charts/charts/everest

go 1.23.2
8 changes: 8 additions & 0 deletions charts/everest/helm.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package everest

import "embed"

// Chart contains the Everest Helm chart files.
//
//go:embed all:*
var Chart embed.FS

0 comments on commit 7732bc5

Please sign in to comment.