Skip to content

Commit

Permalink
issue #1: reviewed and added EOF on files
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasCardin committed Jan 16, 2024
1 parent e7883a4 commit 826e1b9
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ override.tf.json
.terraformrc
terraform.rc

# jq (used to gather information when terraform applying or plannig)
# jq (used to gather information when terraform applying or planning)
jq
2 changes: 1 addition & 1 deletion kubernetes/apps/finesse/finesse-backend-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ spec:
app: finesse-backend
ports:
- protocol: TCP
port: 8080
port: 8080
2 changes: 1 addition & 1 deletion kubernetes/apps/finesse/finesse-frontend-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ spec:
app: finesse-frontend
ports:
- protocol: TCP
port: 3000
port: 3000
1 change: 0 additions & 1 deletion kubernetes/apps/finesse/finesse-ingress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,3 @@ spec:
name: finesse-frontend-svc
port:
number: 3000

2 changes: 1 addition & 1 deletion kubernetes/apps/finesse/finesse-namespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: Namespace
metadata:
name: finesse
labels:
name: finesse
name: finesse
2 changes: 1 addition & 1 deletion kubernetes/system/kube-prometheus-stack/namespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: Namespace
metadata:
name: monitoring
labels:
name: monitoring
name: monitoring
1 change: 0 additions & 1 deletion kubernetes/system/vault/namespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ metadata:
name: vault
labels:
name: vault

2 changes: 1 addition & 1 deletion providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ provider "google" {
provider "kubernetes" {
config_path = "~/.kube/config"
config_context = var.kube_ctx
}
}
2 changes: 1 addition & 1 deletion terraform/gcp-kubernetes-cluster/cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ resource "google_container_node_pool" "nodepool" {
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
}
2 changes: 1 addition & 1 deletion terraform/gcp-kubernetes-cluster/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ terraform {
provider "google" {
project = var.project_id
region = var.region
}
}
2 changes: 1 addition & 1 deletion terraform/gcp-kubernetes-cluster/vault-csr.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ DNS.2 = *.vault-internal.vault.svc.cluster.local
DNS.3 = *.vault
DNS.4 = vault.vault.svc.cluster.local
DNS.5 = vault.vault.svc
IP.1 = 127.0.0.1
IP.1 = 127.0.0.1
2 changes: 1 addition & 1 deletion terraform/gcp-kubernetes-cluster/vault.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ resource "tls_private_key" "vault_key" {

# This requires that jq and openssl are installed in the runtime environment
# It creates a certificate signing request (CSR) based on the vault-csr.conf file
# The 2 jq at the begining and end of the pipes are used to read the input and wrap the result in json
# The 2 jq at the beginning and end of the pipes are used to read the input and wrap the result in json
# since this is how terraform "external" passes data.
data "external" "k8s_cert_request" {
program = [
Expand Down

0 comments on commit 826e1b9

Please sign in to comment.