-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquix.yaml
More file actions
130 lines (127 loc) · 3.33 KB
/
quix.yaml
File metadata and controls
130 lines (127 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Quix Project Descriptor
# This file describes the data pipeline and configuration of resources of a Quix Project.
metadata:
version: 1.0
# This section describes the Deployments of the data pipeline
deployments:
- name: Prometheus
application: prometheus
version: latest
deploymentType: Service
resources:
cpu: 500
memory: 2000
replicas: 1
network:
serviceName: prometheus
ports:
- port: 80
targetPort: 9090
- name: Prometheus Pushgateway
application: prometheus-pushgateway
version: latest
deploymentType: Service
resources:
cpu: 200
memory: 500
replicas: 1
network:
serviceName: prometheus-pushgateway
ports:
- port: 80
targetPort: 9091
- name: Pushgateway Proxy
application: pushgateway-proxy
version: latest
deploymentType: Service
resources:
cpu: 200
memory: 500
replicas: 1
publicAccess:
enabled: true
urlPrefix: pushgateway-proxy
network:
serviceName: pushgateway-proxy
ports:
- port: 80
targetPort: 80
variables:
- name: PUSHGATEWAY_URL
inputType: FreeText
required: true
value: http://prometheus-pushgateway
- name: PUSHGATEWAY_PROXY_PASSWORD
inputType: Secret
required: true
secretKey: pushgateway_proxy_pw
- name: RAM Usage Example App
group: Example usage
application: resource-usage-generator-app
version: latest
deploymentType: Service
resources:
cpu: 200
memory: 500
replicas: 1
variables:
- name: PUSHGATEWAY_PROXY_URL
inputType: FreeText
description: Prometheus Push gateway proxy url.
required: true
value: http://pushgateway-proxy
- name: PUSHGATEWAY_PROXY_PASSWORD
inputType: Secret
description: Prometheus push gateway proxy password.
required: true
secretKey: pushgateway_proxy_pw
- name: RESOURCE_TYPE
inputType: FreeText
description: Type of resource to generate usage measurements for.
required: true
value: memory
- name: CPU Usage Example App
group: Example usage
application: resource-usage-generator-app
version: latest
deploymentType: Service
resources:
cpu: 200
memory: 500
replicas: 1
variables:
- name: PUSHGATEWAY_PROXY_URL
inputType: FreeText
description: Prometheus Push gateway proxy url.
required: true
value: http://pushgateway-proxy
- name: PUSHGATEWAY_PROXY_PASSWORD
inputType: Secret
description: Prometheus push gateway proxy password.
required: true
secretKey: pushgateway_proxy_pw
- name: RESOURCE_TYPE
inputType: FreeText
description: Type of resource to generate usage measurements for.
required: true
value: cpu
- name: Grafana
application: grafana
version: latest
deploymentType: Service
resources:
cpu: 200
memory: 800
replicas: 1
publicAccess:
enabled: true
urlPrefix: grafana
network:
ports:
- port: 80
targetPort: 3000
variables:
- name: GF_SECURITY_ADMIN_PASSWORD
inputType: Secret
required: true
secretKey: grafana_admin_pw