mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2024-12-14 11:58:02 +00:00
5c57e4efe2
Golden files need to be updated as version is updated in the `Chart.yaml` file. This commit adds the step to update the golden files in the release pipeline. To make that possible, The following additional changes are also required: - `Go.Work`: This adds support multi-module projects as we will have the tests along with the operator in sub-folders. This is required to run go cmds from the root directory. (like running tests in this case). - `.helmignore`: This updates the Helm chart to ignore the `/ci` folder during helm packaging as those are not required for users of the chart.
27 lines
372 B
Text
27 lines
372 B
Text
# Patterns to ignore when building packages.
|
|
# This supports shell glob matching, relative path matching, and
|
|
# negation (prefixed with !). Only one pattern per line.
|
|
.DS_Store
|
|
# Common VCS dirs
|
|
.git/
|
|
.gitignore
|
|
.bzr/
|
|
.bzrignore
|
|
.hg/
|
|
.hgignore
|
|
.svn/
|
|
# Common backup files
|
|
*.swp
|
|
*.bak
|
|
*.tmp
|
|
*.orig
|
|
*~
|
|
# Various IDEs
|
|
.project
|
|
.idea/
|
|
*.tmproj
|
|
.vscode/
|
|
ci/
|
|
*.go
|
|
go.mod
|
|
go.sum
|