-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #327 from kubernetes-simulator/bugfixes
Several bugfixes to make simulator work with Kubernetes 1.22
- Loading branch information
Showing
17 changed files
with
71 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,7 +33,7 @@ ENV PATH $PATH:/usr/local/go/bin | |
ENV GOPATH /go | ||
ENV PATH $PATH:/go/bin | ||
|
||
ENV GO111MODULE on | ||
ENV GO111MODULE on | ||
RUN mkdir -p /go/ && \ | ||
go get github.com/hashicorp/terraform/tools/[email protected] | ||
|
||
|
@@ -44,7 +44,7 @@ RUN terraform-bundle package terraform-bundle.hcl && \ | |
|
||
# Default configuration for dep | ||
ARG JQ_VERSION=1.6 | ||
ARG YQ_VERSION=2.7.2 | ||
ARG YQ_VERSION=3.4.1 | ||
ARG GOSS_VERSION=v0.3.7 | ||
ARG HADOLINT_VERSION=v1.16.3 | ||
ARG lint_user=lint | ||
|
@@ -55,7 +55,7 @@ RUN curl -sL https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/j | |
&& chmod +x /usr/local/bin/jq | ||
|
||
## Install YQ | ||
RUN curl -sL https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 \ | ||
RUN curl -sL https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 \ | ||
-o /usr/local/bin/yq \ | ||
&& chmod +x /usr/local/bin/yq | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,4 @@ AWS_SECRET_ACCESS_KEY | |
|
||
# AWS Configuration | ||
AWS_REGION | ||
AWS_DEFAULT_REGION | ||
AWS_PROFILE | ||
AWS_DEFAULT_PROFILE | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,3 @@ resource "aws_instance" "simulator_internal_host" { | |
}, | ||
) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,3 @@ variable "iam_instance_profile_id" { | |
variable "s3_bucket_name" { | ||
description = "Name of s3 bucket" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters