Fix: Make the out flag print to one file using seperator (#1541)

* fix: make the out flag print to one file using seperator

* fix: comment an unused function

* fix: update test script

* fix: update output k8s

* fix: update the json output error condition

* fix: update envvars interpolation tests

* chore: update e2e tests to support yaml generation instead of JSON format

* fix: update e2e tests according to ci environment

* fix: apply PR changes
This commit is contained in:
AhmedGrati
2022-12-01 09:47:50 +01:00
committed by GitHub
parent 4c14b06333
commit 91391eb84f
63 changed files with 4919 additions and 7499 deletions
-139
View File
@@ -1,139 +0,0 @@
{
"kind": "List",
"apiVersion": "v1",
"metadata": {},
"items": [
{
"kind": "Service",
"apiVersion": "v1",
"metadata": {
"name": "librenms",
"creationTimestamp": null,
"labels": {
"io.kompose.service": "librenms-dispatcher"
}
},
"spec": {
"ports": [
{
"name": "8000",
"port": 8000,
"targetPort": 8000
}
],
"selector": {
"io.kompose.service": "librenms-dispatcher"
}
},
"status": {
"loadBalancer": {}
}
},
{
"kind": "Deployment",
"apiVersion": "apps/v1",
"metadata": {
"name": "librenms-dispatcher",
"creationTimestamp": null,
"labels": {
"io.kompose.service": "librenms-dispatcher"
}
},
"spec": {
"replicas": 1,
"selector": {
"matchLabels": {
"io.kompose.service": "librenms-dispatcher"
}
},
"template": {
"metadata": {
"creationTimestamp": null,
"labels": {
"io.kompose.service": "librenms-dispatcher"
}
},
"spec": {
"volumes": [
{
"name": "librenms-dispatcher-claim0",
"persistentVolumeClaim": {
"claimName": "librenms-dispatcher-claim0"
}
}
],
"containers": [
{
"name": "librenms",
"image": "librenms/librenms:latest",
"ports": [
{
"containerPort": 8000
}
],
"env": [
{
"name": "TZ",
"value": "${TZ}"
}
],
"resources": {},
"volumeMounts": [
{
"name": "librenms-dispatcher-claim0",
"mountPath": "/data"
}
]
},
{
"name": "dispatcher",
"image": "librenms/dispatcher:latest",
"env": [
{
"name": "TZ",
"value": "${TZ}"
}
],
"resources": {},
"volumeMounts": [
{
"name": "librenms-dispatcher-claim0",
"mountPath": "/data"
}
]
}
],
"restartPolicy": "Always",
"hostname": "dispatcher"
}
},
"strategy": {
"type": "Recreate"
}
},
"status": {}
},
{
"kind": "PersistentVolumeClaim",
"apiVersion": "v1",
"metadata": {
"name": "librenms-dispatcher-claim0",
"creationTimestamp": null,
"labels": {
"io.kompose.service": "librenms-dispatcher-claim0"
}
},
"spec": {
"accessModes": [
"ReadWriteOnce"
],
"resources": {
"requests": {
"storage": "100Mi"
}
}
},
"status": {}
}
]
}
+84
View File
@@ -0,0 +1,84 @@
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: librenms-dispatcher
name: librenms
spec:
ports:
- name: "8000"
port: 8000
targetPort: 8000
selector:
io.kompose.service: librenms-dispatcher
status:
loadBalancer: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: librenms-dispatcher
name: librenms-dispatcher
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: librenms-dispatcher
strategy:
type: Recreate
template:
metadata:
creationTimestamp: null
labels:
io.kompose.service: librenms-dispatcher
spec:
containers:
- env:
- name: TZ
value: ${TZ}
image: librenms/librenms:latest
name: librenms
ports:
- containerPort: 8000
resources: {}
volumeMounts:
- mountPath: /data
name: librenms-dispatcher-claim0
- env:
- name: TZ
value: ${TZ}
image: librenms/dispatcher:latest
name: dispatcher
resources: {}
volumeMounts:
- mountPath: /data
name: librenms-dispatcher-claim0
hostname: dispatcher
restartPolicy: Always
volumes:
- name: librenms-dispatcher-claim0
persistentVolumeClaim:
claimName: librenms-dispatcher-claim0
status: {}
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: librenms-dispatcher-claim0
name: librenms-dispatcher-claim0
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}