kristof jó gyerek
This commit is contained in:
parent
7755488789
commit
8e7baa1e74
@ -1,31 +1,15 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: PersistentVolume
|
|
||||||
metadata:
|
|
||||||
name: birbnetes-nfs-activemq
|
|
||||||
namespace: birbnetes
|
|
||||||
spec:
|
|
||||||
capacity:
|
|
||||||
storage: 10Gi
|
|
||||||
accessModes:
|
|
||||||
- ReadWriteMany
|
|
||||||
persistentVolumeReclaimPolicy: Recycle
|
|
||||||
nfs:
|
|
||||||
server: 192.168.100.3
|
|
||||||
path: /srv/kubedata/birbnetes/activemq
|
|
||||||
---
|
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
metadata:
|
metadata:
|
||||||
name: activemq-pv-claim
|
name: activemq-pv-claim
|
||||||
labels:
|
|
||||||
app: activemq
|
|
||||||
namespace: birbnetes
|
namespace: birbnetes
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
- ReadWriteMany
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: 10Gi
|
storage: 1Gi
|
||||||
---
|
---
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
@ -56,6 +40,13 @@ spec:
|
|||||||
envFrom:
|
envFrom:
|
||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: activemq-config
|
name: activemq-config
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: "1024Mi"
|
||||||
|
cpu: "500m"
|
||||||
|
limits:
|
||||||
|
memory: "4069Mi"
|
||||||
|
cpu: "2000m"
|
||||||
volumes:
|
volumes:
|
||||||
- name: activemq-volume
|
- name: activemq-volume
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
@ -98,7 +89,6 @@ spec:
|
|||||||
- name: activemq-mqtt
|
- name: activemq-mqtt
|
||||||
port: 1883
|
port: 1883
|
||||||
targetPort: 1883
|
targetPort: 1883
|
||||||
nodePort: 30075
|
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
selector:
|
selector:
|
||||||
app: activemq
|
app: activemq
|
||||||
|
60
grafana.yaml
60
grafana.yaml
@ -1,61 +1,31 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: grafana
|
|
||||||
namespace: birbnetes
|
|
||||||
spec:
|
|
||||||
type: NodePort
|
|
||||||
ports:
|
|
||||||
- name: grafana
|
|
||||||
port: 3000
|
|
||||||
targetPort: 3000
|
|
||||||
nodePort: 30070
|
|
||||||
protocol: TCP
|
|
||||||
selector:
|
|
||||||
app: grafana
|
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: PersistentVolume
|
|
||||||
metadata:
|
|
||||||
name: grafana-nfs-pv
|
|
||||||
namespace: birbnetes
|
|
||||||
spec:
|
|
||||||
capacity:
|
|
||||||
storage: 10Gi
|
|
||||||
accessModes:
|
|
||||||
- ReadWriteMany
|
|
||||||
persistentVolumeReclaimPolicy: Recycle
|
|
||||||
nfs:
|
|
||||||
server: 192.168.122.20
|
|
||||||
path: /srv/birbdata/grafana
|
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
metadata:
|
metadata:
|
||||||
name: grafana-nfs-pvc
|
name: grafana-pvc
|
||||||
namespace: birbnetes
|
namespace: birbnetes
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
- ReadWriteMany
|
- ReadWriteOnce
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: 10Gi
|
storage: 5Gi
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
name: grafana
|
name: grafana
|
||||||
labels:
|
|
||||||
app: grafana
|
|
||||||
namespace: birbnetes
|
namespace: birbnetes
|
||||||
data:
|
data:
|
||||||
GF_SERVER_ROOT_URL: "https://luna.sch.bme.hu:30070/"
|
GF_SERVER_ROOT_URL: "https://birbfana.k8s.kmlabz.com/"
|
||||||
---
|
---
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: grafana
|
name: grafana
|
||||||
namespace: birbnetes
|
namespace: birbnetes
|
||||||
|
labels:
|
||||||
|
app: grafana
|
||||||
spec:
|
spec:
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
@ -67,10 +37,12 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app: grafana
|
app: grafana
|
||||||
spec:
|
spec:
|
||||||
|
securityContext:
|
||||||
|
fsGroup: 472
|
||||||
volumes:
|
volumes:
|
||||||
- name: data
|
- name: data
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: grafana-nfs-pvc
|
claimName: grafana-pvc
|
||||||
containers:
|
containers:
|
||||||
- name: grafana
|
- name: grafana
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
@ -82,3 +54,17 @@ spec:
|
|||||||
name: grafana
|
name: grafana
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: grafana
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: grafana
|
||||||
|
ports:
|
||||||
|
- name: grafana
|
||||||
|
protocol: TCP
|
||||||
|
port: 80
|
||||||
|
targetPort: 3000
|
||||||
|
|
||||||
|
76
input-influx.yml
Normal file
76
input-influx.yml
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: input-influx
|
||||||
|
namespace: birbnetes
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 8086
|
||||||
|
targetPort: 8086
|
||||||
|
protocol: TCP
|
||||||
|
selector:
|
||||||
|
app: input-influx
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: input-influxdb
|
||||||
|
namespace: birbnetes
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: input-influx
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
replicas: 1
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: input-influx
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: input-influx
|
||||||
|
image: influxdb
|
||||||
|
imagePullPolicy: "IfNotPresent"
|
||||||
|
ports:
|
||||||
|
- containerPort: 8086
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: input-influx-config
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /var/lib/influxdb
|
||||||
|
name: input-influx-storage
|
||||||
|
volumes:
|
||||||
|
- name: input-influx-storage
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: input-influx-storage-pv-claim
|
||||||
|
---
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: input-influx-storage-pv-claim
|
||||||
|
labels:
|
||||||
|
app: input-influx
|
||||||
|
namespace: birbnetes
|
||||||
|
spec:
|
||||||
|
storageClassName: longhorn
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 2Gi
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ConfigMap
|
||||||
|
metadata:
|
||||||
|
name: input-influx-config
|
||||||
|
labels:
|
||||||
|
app: input-influx
|
||||||
|
namespace: birbnetes
|
||||||
|
data:
|
||||||
|
INFLUXDB_DB: input-service
|
||||||
|
INFLUXDB_USER: output-service
|
||||||
|
INFLUXDB_USER_PASSWORD: input-service-supersecret
|
||||||
|
INFLUXDB_READ_USER: grafana
|
||||||
|
INFLUXDB_READ_USER_PASSWORD: CorrectHorseBatteryStaple
|
38
input-redis.yaml
Normal file
38
input-redis.yaml
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: input-redis
|
||||||
|
namespace: birbnetes
|
||||||
|
labels:
|
||||||
|
app: input-redis
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: input-redis
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: input-redis
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: input-redis
|
||||||
|
image: redis
|
||||||
|
ports:
|
||||||
|
- containerPort: 6379
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: input-redis
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: input-redis
|
||||||
|
ports:
|
||||||
|
- name: input-redis
|
||||||
|
protocol: TCP
|
||||||
|
port: 6379
|
||||||
|
targetPort: 6379
|
||||||
|
|
@ -1,19 +1,4 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolume
|
|
||||||
metadata:
|
|
||||||
name: birbnetes-nfs-model-minio
|
|
||||||
namespace: birbnetes
|
|
||||||
spec:
|
|
||||||
capacity:
|
|
||||||
storage: 10Gi
|
|
||||||
accessModes:
|
|
||||||
- ReadWriteMany
|
|
||||||
persistentVolumeReclaimPolicy: Recycle
|
|
||||||
nfs:
|
|
||||||
server: 192.168.100.3
|
|
||||||
path: /srv/kubedata/birbnetes/model_minio
|
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Service
|
kind: Service
|
||||||
metadata:
|
metadata:
|
||||||
name: model-minio
|
name: model-minio
|
||||||
@ -30,14 +15,15 @@ spec:
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
metadata:
|
metadata:
|
||||||
name: birbnetes-nfs-model-minio
|
name: pvc-minio-model
|
||||||
namespace: birbnetes
|
namespace: birbnetes
|
||||||
spec:
|
spec:
|
||||||
|
storageClassName: longhorn
|
||||||
accessModes:
|
accessModes:
|
||||||
- ReadWriteMany
|
- ReadWriteOnce
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: 10Gi
|
storage: 3Gi
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
@ -69,13 +55,13 @@ spec:
|
|||||||
volumes:
|
volumes:
|
||||||
- name: data
|
- name: data
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: birbnetes-nfs-model-minio
|
claimName: pvc-minio-model
|
||||||
containers:
|
containers:
|
||||||
- name: model-minio
|
- name: model-minio
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: "/data"
|
mountPath: "/data"
|
||||||
image: minio/minio:RELEASE.2020-03-25T07-03-04Z
|
image: minio/minio:latest
|
||||||
args:
|
args:
|
||||||
- server
|
- server
|
||||||
- /data
|
- /data
|
||||||
|
@ -46,21 +46,6 @@ spec:
|
|||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: output-influx-storage-pv-claim
|
claimName: output-influx-storage-pv-claim
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
|
||||||
kind: PersistentVolume
|
|
||||||
metadata:
|
|
||||||
name: birbnetes-nfs-output-influx
|
|
||||||
namespace: birbnetes
|
|
||||||
spec:
|
|
||||||
capacity:
|
|
||||||
storage: 10Gi
|
|
||||||
accessModes:
|
|
||||||
- ReadWriteMany
|
|
||||||
persistentVolumeReclaimPolicy: Recycle
|
|
||||||
nfs:
|
|
||||||
server: 192.168.100.3
|
|
||||||
path: /srv/kubedata/birbnetes/outflux
|
|
||||||
---
|
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
metadata:
|
metadata:
|
||||||
@ -69,11 +54,12 @@ metadata:
|
|||||||
app: output-influx
|
app: output-influx
|
||||||
namespace: birbnetes
|
namespace: birbnetes
|
||||||
spec:
|
spec:
|
||||||
|
storageClassName: longhorn
|
||||||
accessModes:
|
accessModes:
|
||||||
- ReadWriteMany
|
- ReadWriteOnce
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: 10Gi
|
storage: 2Gi
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
helm repo add bitnami https://charts.bitnami.com/bitnami
|
helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||||
helm install --set persistence.size=10Gi birb-rabbitmq bitnami/rabbitmq --namespace birbnetes
|
helm install --set persistence.size=2Gi birb-rabbitmq bitnami/rabbitmq --namespace birbnetes
|
||||||
|
|
||||||
echo "Password : $(kubectl get secret --namespace birbnetes birb-rabbitmq -o jsonpath="{.data.rabbitmq-password}" | base64 --decode)"
|
echo "Password : $(kubectl get secret --namespace birbnetes birb-rabbitmq -o jsonpath="{.data.rabbitmq-password}" | base64 --decode)"
|
||||||
|
@ -1,19 +1,4 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolume
|
|
||||||
metadata:
|
|
||||||
name: birbnetes-nfs-storage-minio
|
|
||||||
namespace: birbnetes
|
|
||||||
spec:
|
|
||||||
capacity:
|
|
||||||
storage: 10Gi
|
|
||||||
accessModes:
|
|
||||||
- ReadWriteOnce
|
|
||||||
persistentVolumeReclaimPolicy: Recycle
|
|
||||||
nfs:
|
|
||||||
server: 192.168.100.3
|
|
||||||
path: /srv/kubedata/birbnetes/storage_minio
|
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Service
|
kind: Service
|
||||||
metadata:
|
metadata:
|
||||||
name: minio-service
|
name: minio-service
|
||||||
@ -73,9 +58,9 @@ spec:
|
|||||||
containers:
|
containers:
|
||||||
- name: minio
|
- name: minio
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: "/data"
|
mountPath: "/data"
|
||||||
image: minio/minio:RELEASE.2020-03-25T07-03-04Z
|
image: minio/minio:latest
|
||||||
args:
|
args:
|
||||||
- server
|
- server
|
||||||
- /data
|
- /data
|
||||||
|
Loading…
Reference in New Issue
Block a user