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
# terraform apply ./tfp | |
helm_release.cert_manager: Creating... | |
helm_release.nginx_ingress: Creating... | |
helm_release.cert_manager: Still creating... [10s elapsed] | |
helm_release.nginx_ingress: Still creating... [10s elapsed] | |
helm_release.nginx_ingress: Creation complete after 16s [id=staging-nginx-ingress-60f41c36] | |
helm_release.cert_manager: Still creating... [20s elapsed] | |
helm_release.cert_manager: Still creating... [30s elapsed] | |
helm_release.cert_manager: Still creating... [40s elapsed] |
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
# terraform plan -out ./tfp | |
# ... | |
------------------------------------------------------------------------ | |
An execution plan has been generated and is shown below. | |
Resource actions are indicated with the following symbols: | |
+ create | |
Terraform will perform the following actions: |
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
Error: Unsupported argument | |
on main.tf line 50, in resource "google_container_cluster" "cluster": | |
50: end_time = "03:00" # Has failed with `An argument named "end_time" is not expected here.` | |
An argument named "end_time" is not expected here. | |
Error: Unsupported argument |
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
Error: Unsupported block type | |
on main.tf line 89, in resource "google_container_node_pool" "cluster_nodes": | |
89: release_channel { | |
Blocks of type "release_channel" are not expected here. |
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
#!/usr/bin/env bash | |
### Source: | |
### https://gist.github.com/yannhowe/5ab1501156bd84c8ac261e2c17b8e3e0#gistcomment-2564991 | |
mkdir -p ~/.ssh | |
# https://docs.gitlab.com/ee/ci/ssh_keys/#how-it-works | |
echo "${CI_RUNNER_SSH_PRIVATE_KEY}" | tr -d '\r' > ~/.ssh/id_rsa |
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 setup took me a few hours to come up with; codecov docs turned out to be useless in the end. | |
# With this gist I hope to be the last one to have ever faced it again :) | |
sudo: required | |
services: | |
- docker | |
before_install: | |
- docker version |