2024-09-08 07:48:38 +03:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
2024-09-08 22:57:29 +03:00
|
|
|
package kubetypes
|
2024-09-08 07:48:38 +03:00
|
|
|
|
|
|
|
const (
|
|
|
|
// Hostinfo App values for the Tailscale Kubernetes Operator components.
|
2024-11-07 12:42:29 +00:00
|
|
|
AppOperator = "k8s-operator"
|
|
|
|
AppAPIServerProxy = "k8s-operator-proxy"
|
|
|
|
AppIngressProxy = "k8s-operator-ingress-proxy"
|
|
|
|
AppIngressResource = "k8s-operator-ingress-resource"
|
|
|
|
AppEgressProxy = "k8s-operator-egress-proxy"
|
|
|
|
AppConnector = "k8s-operator-connector-resource"
|
|
|
|
AppProxyGroupEgress = "k8s-operator-proxygroup-egress"
|
|
|
|
AppProxyGroupIngress = "k8s-operator-proxygroup-ingress"
|
2024-09-08 07:48:38 +03:00
|
|
|
|
|
|
|
// Clientmetrics for Tailscale Kubernetes Operator components
|
|
|
|
MetricIngressProxyCount = "k8s_ingress_proxies" // L3
|
|
|
|
MetricIngressResourceCount = "k8s_ingress_resources" // L7
|
|
|
|
MetricEgressProxyCount = "k8s_egress_proxies"
|
|
|
|
MetricConnectorResourceCount = "k8s_connector_resources"
|
|
|
|
MetricConnectorWithSubnetRouterCount = "k8s_connector_subnetrouter_resources"
|
|
|
|
MetricConnectorWithExitNodeCount = "k8s_connector_exitnode_resources"
|
2024-11-11 11:43:54 +00:00
|
|
|
MetricConnectorWithAppConnectorCount = "k8s_connector_appconnector_resources"
|
2024-09-08 07:48:38 +03:00
|
|
|
MetricNameserverCount = "k8s_nameserver_resources"
|
2024-09-11 12:19:29 +01:00
|
|
|
MetricRecorderCount = "k8s_recorder_resources"
|
2024-10-04 13:11:35 +01:00
|
|
|
MetricEgressServiceCount = "k8s_egress_service_resources"
|
2024-11-07 12:42:29 +00:00
|
|
|
MetricProxyGroupEgressCount = "k8s_proxygroup_egress_resources"
|
|
|
|
MetricProxyGroupIngressCount = "k8s_proxygroup_ingress_resources"
|
2024-12-04 12:00:04 +00:00
|
|
|
|
|
|
|
// Keys that containerboot writes to state file that can be used to determine its state.
|
|
|
|
// fields set in Tailscale state Secret. These are mostly used by the Tailscale Kubernetes operator to determine
|
|
|
|
// the state of this tailscale device.
|
|
|
|
KeyDeviceID string = "device_id" // node stable ID of the device
|
|
|
|
KeyDeviceFQDN string = "device_fqdn" // device's tailnet hostname
|
|
|
|
KeyDeviceIPs string = "device_ips" // device's tailnet IPs
|
|
|
|
KeyPodUID string = "pod_uid" // Pod UID
|
|
|
|
// KeyCapVer contains Tailscale capability version of this proxy instance.
|
|
|
|
KeyCapVer string = "tailscale_capver"
|
|
|
|
// KeyHTTPSEndpoint is a name of a field that can be set to the value of any HTTPS endpoint currently exposed by
|
|
|
|
// this device to the tailnet. This is used by the Kubernetes operator Ingress proxy to communicate to the operator
|
|
|
|
// that cluster workloads behind the Ingress can now be accessed via the given DNS name over HTTPS.
|
|
|
|
KeyHTTPSEndpoint string = "https_endpoint"
|
|
|
|
ValueNoHTTPS string = "no-https"
|
2024-09-08 07:48:38 +03:00
|
|
|
)
|