-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ac62fd
commit 157207e
Showing
29 changed files
with
910 additions
and
84 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
kubernetes/aks/apps/webtop/base/andjeutcha/andjeutcha-webtop-deployment.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: andjeutcha-webtop | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: andjeutcha-webtop | ||
template: | ||
metadata: | ||
labels: | ||
app: andjeutcha-webtop | ||
spec: | ||
containers: | ||
- name: webtop | ||
image: linuxserver/webtop:ubuntu-kde | ||
ports: | ||
- containerPort: 3000 | ||
envFrom: | ||
- secretRef: | ||
name: andjeutcha-webtop-secrets | ||
volumeMounts: | ||
- name: config | ||
mountPath: /config | ||
volumes: | ||
- name: config | ||
persistentVolumeClaim: | ||
claimName: webtop-config-pvc | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: andjeutcha-webtop-service | ||
spec: | ||
type: ClusterIP | ||
selector: | ||
app: webtop | ||
ports: | ||
- protocol: TCP | ||
port: 3000 | ||
targetPort: 3000 | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: andjeutcha-webtop-config-pvc | ||
spec: | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi |
32 changes: 32 additions & 0 deletions
32
kubernetes/aks/apps/webtop/base/andjeutcha/andjeutcha-webtop-ingress.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# For more information check https://github.com/nginxinc/kubernetes-ingress/issues/323 | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: andjeutcha-webtop-ingress | ||
annotations: | ||
nginx.ingress.kubernetes.io/whitelist-source-range: 205.194.32.0/24,10.244.0.0/16,192.197.71.0/24 | ||
external-dns.alpha.kubernetes.io/target: inspection.alpha.canada.ca | ||
cert-manager.io/cluster-issuer: letsencrypt-prod | ||
nginx.ingress.kubernetes.io/add-base-url: "true" | ||
nginx.ingress.kubernetes.io/rewrite-target: / | ||
nginx.ingress.kubernetes.io/client_max_body_size: "200m" | ||
nginx.ingress.kubernetes.io/proxy-read-timeout: "120" | ||
ingress.kubernetes.io/force-ssl-redirect: "true" | ||
kubernetes.io/tls-acme: "true" | ||
spec: | ||
ingressClassName: nginx | ||
tls: | ||
- hosts: | ||
- andjeutcha-webtop.inspection.alpha.canada.ca | ||
secretName: webtop-tls | ||
rules: | ||
- host: andjeutcha-webtop.inspection.alpha.canada.ca | ||
http: | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: andjeutcha-webtop-service | ||
port: | ||
number: 3000 |
14 changes: 14 additions & 0 deletions
14
kubernetes/aks/apps/webtop/base/andjeutcha/andjeutcha-webtop-secrets.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
kind: Secret | ||
apiVersion: v1 | ||
metadata: | ||
name: andjeutcha-webtop-secrets | ||
annotations: | ||
avp.kubernetes.io/path: "kv/data/webtop/test" | ||
avp.kubernetes.io/secret-version: "1" | ||
stringData: | ||
PUID: <PUID> | ||
PGID: <PGID> | ||
TZ: <TZ> | ||
TITLE: <TITLE> | ||
CUSTOM_USER: <CUSTOM_USER> | ||
PASSWORD: <PASSWORD> |
55 changes: 55 additions & 0 deletions
55
kubernetes/aks/apps/webtop/base/gallagbe/gallagbe-webtop-deployment.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: gallagbe-webtop | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: gallagbe-webtop | ||
template: | ||
metadata: | ||
labels: | ||
app: gallagbe-webtop | ||
spec: | ||
containers: | ||
- name: webtop | ||
image: linuxserver/webtop:ubuntu-kde | ||
ports: | ||
- containerPort: 3000 | ||
envFrom: | ||
- secretRef: | ||
name: gallagbe-webtop-secrets | ||
volumeMounts: | ||
- name: config | ||
mountPath: /config | ||
volumes: | ||
- name: config | ||
persistentVolumeClaim: | ||
claimName: webtop-config-pvc | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: gallagbe-webtop-service | ||
spec: | ||
type: ClusterIP | ||
selector: | ||
app: webtop | ||
ports: | ||
- protocol: TCP | ||
port: 3000 | ||
targetPort: 3000 | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: gallagbe-webtop-config-pvc | ||
spec: | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi |
32 changes: 32 additions & 0 deletions
32
kubernetes/aks/apps/webtop/base/gallagbe/gallagbe-webtop-ingress.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# For more information check https://github.com/nginxinc/kubernetes-ingress/issues/323 | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: gallagbe-webtop-ingress | ||
annotations: | ||
nginx.ingress.kubernetes.io/whitelist-source-range: 205.194.32.0/24,10.244.0.0/16,192.197.71.0/24 | ||
external-dns.alpha.kubernetes.io/target: inspection.alpha.canada.ca | ||
cert-manager.io/cluster-issuer: letsencrypt-prod | ||
nginx.ingress.kubernetes.io/add-base-url: "true" | ||
nginx.ingress.kubernetes.io/rewrite-target: / | ||
nginx.ingress.kubernetes.io/client_max_body_size: "200m" | ||
nginx.ingress.kubernetes.io/proxy-read-timeout: "120" | ||
ingress.kubernetes.io/force-ssl-redirect: "true" | ||
kubernetes.io/tls-acme: "true" | ||
spec: | ||
ingressClassName: nginx | ||
tls: | ||
- hosts: | ||
- gallagbe-webtop.inspection.alpha.canada.ca | ||
secretName: webtop-tls | ||
rules: | ||
- host: gallagbe-webtop.inspection.alpha.canada.ca | ||
http: | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: gallagbe-webtop-service | ||
port: | ||
number: 3000 |
14 changes: 14 additions & 0 deletions
14
kubernetes/aks/apps/webtop/base/gallagbe/gallagbe-webtop-secrets.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
kind: Secret | ||
apiVersion: v1 | ||
metadata: | ||
name: gallagbe-webtop-secrets | ||
annotations: | ||
avp.kubernetes.io/path: "kv/data/webtop/test" | ||
avp.kubernetes.io/secret-version: "1" | ||
stringData: | ||
PUID: <PUID> | ||
PGID: <PGID> | ||
TZ: <TZ> | ||
TITLE: <TITLE> | ||
CUSTOM_USER: <CUSTOM_USER> | ||
PASSWORD: <PASSWORD> |
55 changes: 55 additions & 0 deletions
55
kubernetes/aks/apps/webtop/base/jbarbier/jbarbier-webtop-deployment.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: jbarbier-webtop | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: jbarbier-webtop | ||
template: | ||
metadata: | ||
labels: | ||
app: jbarbier-webtop | ||
spec: | ||
containers: | ||
- name: webtop | ||
image: linuxserver/webtop:ubuntu-kde | ||
ports: | ||
- containerPort: 3000 | ||
envFrom: | ||
- secretRef: | ||
name: jbarbier-webtop-secrets | ||
volumeMounts: | ||
- name: config | ||
mountPath: /config | ||
volumes: | ||
- name: config | ||
persistentVolumeClaim: | ||
claimName: webtop-config-pvc | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: jbarbier-webtop-service | ||
spec: | ||
type: ClusterIP | ||
selector: | ||
app: webtop | ||
ports: | ||
- protocol: TCP | ||
port: 3000 | ||
targetPort: 3000 | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: jbarbier-webtop-config-pvc | ||
spec: | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi |
32 changes: 32 additions & 0 deletions
32
kubernetes/aks/apps/webtop/base/jbarbier/jbarbier-webtop-ingress.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# For more information check https://github.com/nginxinc/kubernetes-ingress/issues/323 | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: jbarbier-webtop-ingress | ||
annotations: | ||
nginx.ingress.kubernetes.io/whitelist-source-range: 205.194.32.0/24,10.244.0.0/16,192.197.71.0/24 | ||
external-dns.alpha.kubernetes.io/target: inspection.alpha.canada.ca | ||
cert-manager.io/cluster-issuer: letsencrypt-prod | ||
nginx.ingress.kubernetes.io/add-base-url: "true" | ||
nginx.ingress.kubernetes.io/rewrite-target: / | ||
nginx.ingress.kubernetes.io/client_max_body_size: "200m" | ||
nginx.ingress.kubernetes.io/proxy-read-timeout: "120" | ||
ingress.kubernetes.io/force-ssl-redirect: "true" | ||
kubernetes.io/tls-acme: "true" | ||
spec: | ||
ingressClassName: nginx | ||
tls: | ||
- hosts: | ||
- jbarbier-webtop.inspection.alpha.canada.ca | ||
secretName: webtop-tls | ||
rules: | ||
- host: jbarbier-webtop.inspection.alpha.canada.ca | ||
http: | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: jbarbier-webtop-service | ||
port: | ||
number: 3000 |
14 changes: 14 additions & 0 deletions
14
kubernetes/aks/apps/webtop/base/jbarbier/jbarbier-webtop-secrets.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
kind: Secret | ||
apiVersion: v1 | ||
metadata: | ||
name: jbarbier-webtop-secrets | ||
annotations: | ||
avp.kubernetes.io/path: "kv/data/webtop/test" | ||
avp.kubernetes.io/secret-version: "1" | ||
stringData: | ||
PUID: <PUID> | ||
PGID: <PGID> | ||
TZ: <TZ> | ||
TITLE: <TITLE> | ||
CUSTOM_USER: <CUSTOM_USER> | ||
PASSWORD: <PASSWORD> |
55 changes: 55 additions & 0 deletions
55
kubernetes/aks/apps/webtop/base/jsantos/jsantos-webtop-deployment.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: jsantos-webtop | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: jsantos-webtop | ||
template: | ||
metadata: | ||
labels: | ||
app: jsantos-webtop | ||
spec: | ||
containers: | ||
- name: webtop | ||
image: linuxserver/webtop:ubuntu-kde | ||
ports: | ||
- containerPort: 3000 | ||
envFrom: | ||
- secretRef: | ||
name: jsantos-webtop-secrets | ||
volumeMounts: | ||
- name: config | ||
mountPath: /config | ||
volumes: | ||
- name: config | ||
persistentVolumeClaim: | ||
claimName: webtop-config-pvc | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: jsantos-webtop-service | ||
spec: | ||
type: ClusterIP | ||
selector: | ||
app: webtop | ||
ports: | ||
- protocol: TCP | ||
port: 3000 | ||
targetPort: 3000 | ||
|
||
--- | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: jsantos-webtop-config-pvc | ||
spec: | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi |
Oops, something went wrong.