Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reegnz/helmfile-bug
https://github.com/reegnz/helmfile-bug
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/reegnz/helmfile-bug
- Owner: reegnz
- Created: 2023-09-12T12:49:39.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-12T12:59:19.000Z (over 1 year ago)
- Last Synced: 2024-04-21T00:15:51.340Z (8 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Helmfile softlinks bug
## Problem
This works:
```sh
cd ./services/echo-server/
helmfile template
```This doesn't:
```sh
cd ./accounts/my_aws_account/clusters/my_cluster/services/echo-server/
helmfile template
```## Solution
The helmfile binary should first resolve the absolute path of PWD before resolving relative paths inside the helmfile.yaml
Tools like direnv for example behave correctly with softlinks:
https://github.com/direnv/direnv/blob/master/stdlib.sh#L193-L206