-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
46 lines (40 loc) · 955 Bytes
/
config.go
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
package constant
const (
LoggingNamespace = "cattle-logging"
ClusterLoggingName = "cluster-logging"
ProjectLoggingName = "project-logging"
)
//daemonset
const (
FluentdName = "fluentd"
FluentdHelperName = "fluentd-helper"
FluentdHelperImage = "rancher/fluentd-helper:v0.1.1"
FluentdImages = "rancher/fluentd:v0.1.4"
)
//embedded
const (
EmbeddedESName = "elasticsearch"
EmbeddedKibanaName = "kibana"
ESImage = "rancher/docker-elasticsearch-kubernetes:5.6.2"
KibanaImage = "kibana:5.6.4"
BusyboxImage = "busybox"
)
//configmap
const (
ClusterFileName = "cluster.conf"
ProjectFileName = "project.conf"
ClusterConfigPath = "/tmp/cluster.conf"
ProjectConfigPath = "/tmp/project.conf"
)
//target
const (
Elasticsearch = "elasticsearch"
Splunk = "splunk"
Kafka = "kafka"
Embedded = "embedded"
Syslog = "syslog"
)
//app label
const (
LabelK8sApp = "k8s-app"
)