03bfe08e1d
This moves the various projects from "type-based" folders (such as "services" or "tools") into more appropriate semantic folders (such as "nix", "ops" or "web"). Deprecated projects (nixcon-demo & gotest) which only existed for testing/demonstration purposes have been removed. (Note: *all* builds are broken with this commit)
18 lines
650 B
YAML
18 lines
650 B
YAML
# The secrets below are encrypted using keys stored in Cloud KMS and
|
|
# templated in by kontemplate when deploying.
|
|
#
|
|
# Not all of the values are actually secret (see the matching)
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: nixery-secrets
|
|
namespace: kube-public
|
|
type: Opaque
|
|
data:
|
|
gcs-key.json: {{ passLookup "nixery-gcs-json" | b64enc }}
|
|
gcs-key.pem: {{ passLookup "nixery-gcs-pem" | b64enc }}
|
|
id_nixery: {{ printf "%s\n" (passLookup "nixery-ssh-private") | b64enc }}
|
|
id_nixery.pub: {{ insertFile "id_nixery.pub" | b64enc }}
|
|
known_hosts: {{ insertFile "known_hosts" | b64enc }}
|
|
ssh_config: {{ insertFile "ssh_config" | b64enc }}
|