rename kube to kubectl and add README.md
This commit is contained in:
6
kubectl/01-initialize/01-namespace.yaml
Normal file
6
kubectl/01-initialize/01-namespace.yaml
Normal file
@@ -0,0 +1,6 @@
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: hlaeja
|
||||
labels:
|
||||
environment: testing
|
||||
11
kubectl/01-initialize/02-registry-secret.yaml
Normal file
11
kubectl/01-initialize/02-registry-secret.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: github
|
||||
namespace: hlaeja
|
||||
labels:
|
||||
environment: testing
|
||||
type: kubernetes.io/dockerconfigjson
|
||||
data:
|
||||
# Look at /doc/k8s-docker-registry.md to this value
|
||||
.dockerconfigjson: DockerRegistryBase64==
|
||||
15
kubectl/01-initialize/03-account-jwt-private-key-secret.yaml
Normal file
15
kubectl/01-initialize/03-account-jwt-private-key-secret.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: account-jwt-private-key
|
||||
namespace: hlaeja
|
||||
labels:
|
||||
app: account-register
|
||||
environment: testing
|
||||
tier: backend
|
||||
type: Opaque
|
||||
data:
|
||||
# Look at /doc/rsa_key.md, for how to make real values
|
||||
private_key.pem: AccountJwtPrivateKeyFileBase64==
|
||||
|
||||
|
||||
13
kubectl/01-initialize/04-account-jwt-public-key-secret.yaml
Normal file
13
kubectl/01-initialize/04-account-jwt-public-key-secret.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: account-jwt-public-key
|
||||
namespace: hlaeja
|
||||
labels:
|
||||
app: account-register
|
||||
environment: testing
|
||||
tier: frontend
|
||||
type: Opaque
|
||||
data:
|
||||
# Look at /doc/rsa_key.md, for how to make real values
|
||||
public_key.pem: AccountJwtPublicKeyFileBase64==
|
||||
13
kubectl/01-initialize/05-device-jwt-private-key-secret.yaml
Normal file
13
kubectl/01-initialize/05-device-jwt-private-key-secret.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: device-jwt-private-key
|
||||
namespace: hlaeja
|
||||
labels:
|
||||
app: device-register
|
||||
environment: testing
|
||||
tier: backend
|
||||
type: Opaque
|
||||
data:
|
||||
# Look at /doc/rsa_key.md, for how to make real values
|
||||
private_key.pem: DeviceJwtPrivateKeyFileBase64==
|
||||
13
kubectl/01-initialize/06-device-jwt-public-key-secret.yaml
Normal file
13
kubectl/01-initialize/06-device-jwt-public-key-secret.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: device-jwt-public-key
|
||||
namespace: hlaeja
|
||||
labels:
|
||||
app: device-register
|
||||
environment: testing
|
||||
tier: frontend
|
||||
type: Opaque
|
||||
data:
|
||||
# Look at /doc/rsa_key.md, for how to make real values
|
||||
public_key.pem: DeviceJwtPublicKeyFileBase64==
|
||||
12
kubectl/01-initialize/07-device-api-keystore.yaml
Normal file
12
kubectl/01-initialize/07-device-api-keystore.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: device-api-keystore
|
||||
namespace: hlaeja
|
||||
labels:
|
||||
environment: testing
|
||||
type: Opaque
|
||||
data:
|
||||
# Look at /doc/keystore.md, for how to make real values
|
||||
keystore.p12: DeviceApiKeystoreFileBase64==
|
||||
keystore-password: DeviceApiKeystorePasswordBase64==
|
||||
12
kubectl/01-initialize/08-register-api-keystore.yaml
Normal file
12
kubectl/01-initialize/08-register-api-keystore.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: registry-api-keystore
|
||||
namespace: hlaeja
|
||||
labels:
|
||||
environment: testing
|
||||
type: Opaque
|
||||
data:
|
||||
# Look at /doc/keystore.md, for how to make real values
|
||||
keystore.p12: RegistryApiKeystoreFileBase64==
|
||||
keystore-password: RegistryApiKeystorePasswordBase64==
|
||||
Reference in New Issue
Block a user