Files
argo-cd/hack/Dockerfile.dev-tools
Shyukri Shyukriev 6b783af5c6 chore!: Helm2 removal (#8313)
* chore: remove helm2

Reorder test/container/Dockerfile to mitigate issue of being unable to create
.gitconfig since the homedir is not present

chore: cleanup helm2 and tests related to it
Remove helm2 init. Fix unused import
Use helm 3 structure for CRDs
Remove helm2-dependency testdata
Address PR comments
Add back values-production and value.yaml on helm tests
Remove helm2 from openapi.

Signed-off-by: Shyukri Shyukriev <shyukri.shyukriev@mariadb.com>

	modified:   util/helm/cmd_test.go

* fix: generated openapi

Signed-off-by: Michael Crenshaw <michael@crenshaw.dev>

Co-authored-by: Michael Crenshaw <michael@crenshaw.dev>
2022-04-09 19:17:44 +00:00

18 lines
472 B
Docker

FROM argocd-test-tools:latest as base
RUN ./install.sh codegen-tools
RUN ./install.sh codegen-go-tools
RUN ./install.sh lint-tools
RUN mkdir -p /home/user && chmod 777 /home/user
RUN git config --system user.name "ArgoCD Test User"
RUN git config --system user.email "noreply@example.com"
RUN mkdir -p /go/pkg && chmod 777 /go/pkg
RUN mkdir -p /home/user/.cache && chmod 777 /home/user/.cache
RUN apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*