You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
906 B
33 lines
906 B
package constants
|
|
|
|
const (
|
|
RESTMACHINE = "/restmachine"
|
|
)
|
|
|
|
const (
|
|
MIMEJSON = "application/json"
|
|
MIMEHTML = "text/html"
|
|
MIMEXML = "application/xml"
|
|
MIMEXML2 = "text/xml"
|
|
MIMEPlain = "text/plain"
|
|
MIMEPOSTForm = "application/x-www-form-urlencoded"
|
|
MIMEMultipartPOSTForm = "multipart/form-data"
|
|
MIMEPROTOBUF = "application/x-protobuf"
|
|
MIMEMSGPACK = "application/x-msgpack"
|
|
MIMEMSGPACK2 = "application/msgpack"
|
|
MIMEYAML = "application/x-yaml"
|
|
MIMEYAML2 = "application/yaml"
|
|
MIMETOML = "application/toml"
|
|
MIMESTREAM = "application/octet-stream"
|
|
)
|
|
|
|
var FileName = map[string]string{
|
|
"OidcCertificate": "ca.crt",
|
|
}
|
|
|
|
var K8sValues = []string{"labels", "taints", "annotations, additionalSANs"}
|
|
|
|
var VersionMap = map[string]string{
|
|
"4.3.0": "-",
|
|
}
|