brash-musician-72826
09/14/2022, 5:25 PMapiVersion: v1
kind: Secret
metadata:
name: infracost-secret
type: Opaque
data:
infracost-api-key:
self-hosted-infracost-api-key:
postgresql-password:
am I missing something?little-author-61621
09/14/2022, 5:29 PMpostgresql-password
and postgresql-postgres-password
(this one being the admin ‘postgres’ user password).brash-musician-72826
09/14/2022, 5:32 PMlittle-author-61621
09/14/2022, 5:35 PMbrash-musician-72826
09/14/2022, 5:38 PM<html>
<head><title>503 Service Temporarily Unavailable</title></head>
<body>
<center><h1>503 Service Temporarily Unavailable</h1></center>
<hr><center>nginx/1.17.8</center>
</body>
</html>
little-author-61621
09/14/2022, 5:44 PMbrash-musician-72826
09/14/2022, 5:44 PM- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
key: postgresql-password
name: infracost-secret
little-author-61621
09/14/2022, 5:49 PMkubectl run postgresql-client --rm --tty -i --restart='Never' --image bitnami/postgresql /bin/bash
psql -h <host> -U <user>
brash-musician-72826
09/14/2022, 5:54 PM- name: POSTGRES_POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
key: postgresql-postgres-password
name: infracost-secret
- name: POSTGRES_USER
value: cloudpricingapi
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
key: postgresql-password
name: infracost-secret
little-author-61621
09/14/2022, 6:02 PMbrash-musician-72826
09/14/2022, 6:04 PMlittle-author-61621
09/14/2022, 6:07 PMecho -n
would workbase64 -w 0
brash-musician-72826
09/14/2022, 6:08 PMexport INFRACOST_API_KEY=$(kubectl get secret --namespace monitoring cloud-pricing-api --template="{{ index .data \"self-hosted-infracost-api-key\" }}" | base64 -d)
error: error executing template "{{ index .data \"self-hosted-infracost-api-key\" }}": template: output:1:3: executing "output" at <index .data "self-hosted-infracost-api-key">: error calling index: index of untyped nil
base64: invalid input
And using base64 -D I got this:
base64: invalid option -- 'D'
Try 'base64 --help' for more information
I had to replace -D by -d.little-author-61621
09/14/2022, 6:59 PMbrash-musician-72826
09/14/2022, 6:59 PM