You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Helm chart for Karpor, a modern kubernetes visualization tool.
6
6
@@ -65,8 +65,10 @@ The Karpor Server Component is main backend server. It itself is an `apiserver`,
65
65
|-----|------|---------|-------------|
66
66
| server.image.repo | string |`"kusionstack/karpor"`| Repository for Karpor server image. |
67
67
| server.image.tag | string |`""`| Tag for Karpor server image. Defaults to the chart's appVersion if not specified. |
68
-
| server.name | string |`"karpor-server"`| Component name for Karpor server. |
69
-
| server.port | int |`7443`| Port for Karpor server. |
68
+
| server.name | string |`"karpor-server"`| Component name for karpor server. |
69
+
| server.port | int |`7443`| Port for karpor server. |
70
+
| server.replicas | int |`1`| The number of karpor server pods to run. |
71
+
| server.resources | object |`{"limits":{"cpu":"500m","ephemeral-storage":"10Gi","memory":"1Gi"},"requests":{"cpu":"250m","ephemeral-storage":"2Gi","memory":"256Mi"}}`| Resource limits and requests for the karpor server pods. |
70
72
71
73
### Karpor Syncer
72
74
@@ -78,6 +80,8 @@ The Karpor Syncer Component is independent server to synchronize cluster resourc
78
80
| syncer.image.tag | string |`""`| Tag for Karpor syncer image. Defaults to the chart's appVersion if not specified. |
79
81
| syncer.name | string |`"karpor-syncer"`| Component name for Karpor syncer. |
80
82
| syncer.port | int |`7443`| Port for Karpor syncer. |
83
+
| syncer.replicas | int |`1`| The number of karpor syncer pods to run. |
84
+
| syncer.resources | object |`{"limits":{"cpu":"500m","ephemeral-storage":"10Gi","memory":"1Gi"},"requests":{"cpu":"250m","ephemeral-storage":"2Gi","memory":"256Mi"}}`| Resource limits and requests for the karpor syncer pods. |
81
85
82
86
### ElasticSearch
83
87
@@ -89,6 +93,8 @@ The ElasticSearch Component to store the synchronized resources and user data.
89
93
| elasticsearch.image.tag | string |`"8.6.2"`| Specific tag for ElasticSearch image. |
90
94
| elasticsearch.name | string |`"elasticsearch"`| Component name for ElasticSearch. |
91
95
| elasticsearch.port | int |`9200`| Port for ElasticSearch. |
96
+
| elasticsearch.replicas | int |`1`| The number of ElasticSearch pods to run. |
97
+
| elasticsearch.resources | object |`{"limits":{"cpu":"2","ephemeral-storage":"10Gi","memory":"4Gi"},"requests":{"cpu":"2","ephemeral-storage":"10Gi","memory":"4Gi"}}`| Resource limits and requests for the karpor elasticsearch pods. |
92
98
93
99
### ETCD
94
100
@@ -100,6 +106,8 @@ The ETCD Component is the storage of Karpor Server as `apiserver`.
100
106
| etcd.image.tag | string |`"v3.5.11"`| Specific tag for ETCD image. |
101
107
| etcd.name | string |`"etcd"`| Component name for ETCD. |
102
108
| etcd.port | int |`2379`| Port for ETCD. |
109
+
| etcd.replicas | int |`1`| The number of etcd pods to run. |
110
+
| etcd.resources | object |`{"limits":{"cpu":"500m","ephemeral-storage":"10Gi","memory":"1Gi"},"requests":{"cpu":"250m","ephemeral-storage":"2Gi","memory":"256Mi"}}`| Resource limits and requests for the karpor etcd pods. |
0 commit comments