Skip to content

Commit

Permalink
Merge pull request #111 from kbst/updateversions
Browse files Browse the repository at this point in the history
Updateversions
  • Loading branch information
pst authored May 23, 2020
2 parents b004875 + c279300 commit e6b68bc
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 25 deletions.
4 changes: 2 additions & 2 deletions aws/cluster/providers.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://github.com/terraform-providers/terraform-provider-aws/releases
provider "aws" {
version = "~> 2.50.0"
version = "~> 2.63.0"
}

# https://github.com/terraform-providers/terraform-provider-external/releases
Expand All @@ -10,7 +10,7 @@ provider "external" {

# https://github.com/terraform-providers/terraform-provider-kubernetes/releases
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.11.3"
}

# https://github.com/terraform-providers/terraform-provider-template/releases
Expand Down
8 changes: 5 additions & 3 deletions azurerm/cluster/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,19 @@ provider "external" {

# https://github.com/terraform-providers/terraform-provider-azurerm/releases
provider "azurerm" {
version = "~> 1.44.0"
version = "~> 2.11.0"

features {}
}

# https://github.com/terraform-providers/terraform-provider-azuread/releases
provider "azuread" {
version = "~> 0.7.0"
version = "~> 0.9.0"
}

# https://github.com/terraform-providers/terraform-provider-kubernetes/releases
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.11.3"
}

# https://github.com/terraform-providers/terraform-provider-random/releases
Expand Down
4 changes: 2 additions & 2 deletions google/cluster/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ provider "external" {

# https://github.com/terraform-providers/terraform-provider-google/releases
provider "google" {
version = "~> 3.9.0"
version = "~> 3.22.0"
}

# https://github.com/terraform-providers/terraform-provider-kubernetes/releases
provider "kubernetes" {
version = "~> 1.10.0"
version = "~> 1.11.3"
}

# https://github.com/terraform-providers/terraform-provider-template/releases
Expand Down
32 changes: 16 additions & 16 deletions oci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ RUN mkdir -p /opt/bin
# Common builder
FROM builder AS common-builder

ARG KUBECTL_VERSION=v1.18.1
ARG KUBECTL_VERSION=v1.18.3
ARG KUSTOMIZE_VERSION=v3.5.4
ARG TERRAFORM_VERSION=0.12.24
ARG TERRAFORM_VERSION=0.12.25
ARG TERRAFORM_PROVIDER_KUSTOMIZE_VERSION=v0.1.0-beta.3

RUN echo "KUBECTL_VERSION: ${KUBECTL_VERSION}" \
Expand Down Expand Up @@ -79,7 +79,7 @@ RUN echo "AWS_CLI_VERSION: N/A" \
# GCP builder
FROM builder AS gcp-builder

ARG GOOGLE_CLOUD_SDK_VERSION=289.0.0
ARG GOOGLE_CLOUD_SDK_VERSION=293.0.0

RUN echo "GOOGLE_CLOUD_SDK_VERSION: ${GOOGLE_CLOUD_SDK_VERSION}" \
&& curl -O https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-sdk-${GOOGLE_CLOUD_SDK_VERSION}-linux-x86_64.tar.gz \
Expand All @@ -93,17 +93,17 @@ RUN echo "GOOGLE_CLOUD_SDK_VERSION: ${GOOGLE_CLOUD_SDK_VERSION}" \
# Azure builder
FROM builder AS azure-builder

ARG AZURE_CLI_VERSION=2.3.1
ARG AZURE_CLI_VERSION=2.6.0

RUN apt-get update && apt-get install -y \
libffi-dev

RUN echo "AZURE_CLI_VERSION: ${AZURE_CLI_VERSION}" \
&& python -m venv /opt/azure/ \
&& /opt/azure/bin/pip install --no-cache-dir \
azure-cli==${AZURE_CLI_VERSION} \
azure-cli==${AZURE_CLI_VERSION} \
&& echo '#!/usr/bin/env bash\n/opt/azure/bin/python -m azure.cli "$@"' \
> /opt/bin/az \
> /opt/bin/az \
&& chmod +x /opt/bin/az \
&& /opt/bin/az --version

Expand All @@ -127,9 +127,9 @@ RUN echo "DOCKER_CLI_VERSION: ${DOCKER_CLI_VERSION}" \

# install kind terraform provider from source
RUN git clone https://github.com/kyma-incubator/terraform-provider-kind.git && \
cd terraform-provider-kind && \
git checkout ${TERRAFORM_PROVIDER_KIND_VERSION} && \
go build -o /opt/bin/terraform-provider-kind
cd terraform-provider-kind && \
git checkout ${TERRAFORM_PROVIDER_KIND_VERSION} && \
go build -o /opt/bin/terraform-provider-kind


#
Expand All @@ -138,13 +138,13 @@ RUN git clone https://github.com/kyma-incubator/terraform-provider-kind.git &&
FROM ${BASE_IMAGE} AS final-base

RUN apt-get update && apt-get install -y \
ca-certificates \
git \
jq \
wget \
openssh-client \
dnsutils \
unzip \
ca-certificates \
git \
jq \
wget \
openssh-client \
dnsutils \
unzip \
&& rm -rf /var/lib/apt/lists/*

ENV HOME=/infra/.user
Expand Down
2 changes: 1 addition & 1 deletion quickstart/src/configurations/gke/config.auto.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ clusters = {
base_domain = ""

# Initial desired K8s version, will be upgraded automatically
cluster_min_master_version = "1.15"
cluster_min_master_version = "1.16"

# Initial number of desired nodes per zone
cluster_initial_node_count = 1
Expand Down
2 changes: 1 addition & 1 deletion tests/config.auto.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ clusters = {
project_id = "terraform-kubestack-testing"
name_prefix = "kbstacctest"
base_domain = "infra.serverwolken.de"
cluster_min_master_version = "1.15"
cluster_min_master_version = "1.16"
cluster_min_node_count = 1
cluster_max_node_count = 1
region = "europe-west1"
Expand Down

0 comments on commit e6b68bc

Please sign in to comment.