Pin gcloud version in tests Dockerfile
[osm/devops.git] / docker / tests / Dockerfile
index d981f84..3b5aae0 100644 (file)
@@ -64,10 +64,13 @@ RUN pip3 install \
     -r /usr/lib/python3/dist-packages/osmclient/requirements.txt \
     -r /usr/share/osm-tests/requirements.txt
 
-# Google Cloud CLI
+# Google Cloud CLI and kubectl
 RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
 RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
-RUN apt-get update && apt-get install -y google-cloud-sdk
+RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \
+    DEBIAN_FRONTEND=noninteractive apt-get --yes install \
+    google-cloud-cli=455.* \
+    kubectl=1.28.*
 
 # Azure CLI
 RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash