Skip to content

bug: fix helmfile parsing error for default env #68

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

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 2 additions & 0 deletions applications/wg-easy/helmfile.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -9,6 +9,8 @@ helmDefaults:
environments:
default:
values:
- username: "[email protected]"
- password: '{{env "REPLICATED_LICENSE_ID"}}'
- chartSources:
certManager: ./charts/cert-manager
certManagerIssuers: ./charts/cert-manager-issuers

Unchanged files with check annotations Beta

# Clean up
&& apt-get purge -y gnupg \
&& rm -rf /var/lib/apt/lists/*

Check warning on line 31 in applications/wg-easy/container/Containerfile

GitHub Actions / build-and-push

Empty continuation lines will become errors in a future release

NoEmptyContinuation: Empty continuation line More info: https://docs.docker.com/go/dockerfile/rule/no-empty-continuation/
# Install helm
RUN curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash \
| cut -d : -f 2,3 \
| tr -d \") -o replicated.tar.gz \
&& tar xf replicated.tar.gz replicated && rm replicated.tar.gz \
&& mv replicated /usr/local/bin/replicated

Check warning on line 66 in applications/wg-easy/container/Containerfile

GitHub Actions / build-and-push

Empty continuation lines will become errors in a future release

NoEmptyContinuation: Empty continuation line More info: https://docs.docker.com/go/dockerfile/rule/no-empty-continuation/
# Create a non-root user for better security
RUN groupadd -r devuser && useradd -r -g devuser -m -s /bin/bash devuser