forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
54 lines (46 loc) · 958 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
47
48
49
50
51
52
53
54
package constant
const (
LoggingNamespace = "cattle-logging"
ClusterLoggingName = "cluster-logging"
ProjectLoggingName = "project-logging"
)
//daemonset
const (
FluentdName = "fluentd"
FluentdHelperName = "fluentd-helper"
LogAggregatorName = "log-aggregator"
)
//embedded
const (
EmbeddedESName = "elasticsearch"
EmbeddedKibanaName = "kibana"
)
//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"
)
const (
GoogleKubernetesEngine = "googleKubernetesEngine"
)
//ssl
const (
SSLSecretName = "sslconfig"
CaFileName = "ca.pem"
ClientCertName = "client-cert.pem"
ClientKeyName = "client-key.pem"
)