Skip to content

Commit

Permalink
update helm version & add dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
OsamaKhan220 committed Nov 20, 2023
1 parent f5489c7 commit 30bc291
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ ARG UBUNTU_VERSION="22.04"
ARG DOCKER_VERSION="24.0.7"
ARG KUBECTL_VERSION="1.28.2"
ARG OC_CLI_VERSION="4.14.1"
ARG HELM_VERSION="3.13.2"
# Using Helm 3.10.1 as the latest Helm version has a null value override issue.
# For additional details, refer to: https://github.com/helm/helm/issues/5184
ARG HELM_VERSION="3.10.1"
ARG TERRAFORM_VERSION="1.6.4"
ARG ANSIBLE_CORE_VERSION="2.13.11"
ARG ANSIBLE_VERSION="6.7.0"
Expand Down Expand Up @@ -200,6 +202,7 @@ RUN pip3 install \
cryptography \
hvac \
jmespath \
kubernetes \
netaddr \
passlib \
pbr \
Expand All @@ -217,6 +220,9 @@ RUN if [[ ! -z ${ANSIBLE_VERSION} && ! -z ${JINJA_VERSION} ]] ; then \
jinja2==${JINJA_VERSION}; \
fi

#install ansible collection
RUN ansible-galaxy collection install kubernetes.core

ENV TERM xterm
ENV ZSH_THEME agnoster
RUN wget -q https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
Expand Down

0 comments on commit 30bc291

Please sign in to comment.