mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
* 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>
18 lines
472 B
Docker
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/*
|