-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: replace to oracle mysql operator (#4)
- Loading branch information
1 parent
8bff120
commit 620fe6b
Showing
27 changed files
with
678 additions
and
224 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
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 |
---|---|---|
@@ -1,11 +1,19 @@ | ||
FROM alpine:edge | ||
FROM alpine:3.17 | ||
|
||
ENV TERRAFORM_VERSION=0.13.5-r0 | ||
ENV HELM_VERSION=3.4.0-r0 | ||
ENV TERRAFORM_VERSION=1.3.6 | ||
ENV HELM_VERSION=3.4.1 | ||
|
||
RUN apk --no-cache add \ | ||
-X http://dl-cdn.alpinelinux.org/alpine/edge/testing \ | ||
terraform=$TERRAFORM_VERSION \ | ||
helm=$HELM_VERSION \ | ||
bash=5.0.18-r0 | ||
|
||
bash=5.2.15-r0 \ | ||
curl=7.87.0-r0 && \ | ||
# Install Terraform | ||
wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \ | ||
unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip && \ | ||
mv terraform /usr/local/bin/ && \ | ||
terraform --version && \ | ||
# Install helm | ||
curl -L https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz | tar xz && \ | ||
mv linux-amd64/helm /usr/bin/helm && \ | ||
chmod +x /usr/bin/helm && \ | ||
rm -rf linux-amd64 && \ | ||
helm version |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.