Documentation ¶
Index ¶
Constants ¶
View Source
const ( CiliumPodSelector = "app.kubernetes.io/part-of=cilium" AgentContainerName = "cilium-agent" AgentClusterRoleName = "cilium" AgentDaemonSetName = "cilium" AgentPodSelector = "k8s-app=cilium" EnvoyDaemonSetName = "cilium-envoy" EnvoyConfigMapName = "cilium-envoy-config" CASecretName = "cilium-ca" CASecretCertName = "ca.crt" EncryptionSecretName = "cilium-ipsec-keys" OperatorPodSelector = "io.cilium/app=operator" OperatorContainerName = "cilium-operator" OperatorMetricsPortName = "prometheus" OperatorDeploymentName = "cilium-operator" RelayContainerName = "hubble-relay" RelayDeploymentName = "hubble-relay" RelayConfigMapName = "hubble-relay-config" HubbleUIDeploymentName = "hubble-ui" HubbleGenerateCertsCronJobName = "hubble-generate-certs" ClusterMeshDeploymentName = "clustermesh-apiserver" ClusterMeshBinaryName = "/usr/bin/clustermesh-apiserver" ClusterMeshContainerName = "apiserver" ClusterMeshPodSelector = "k8s-app=clustermesh-apiserver" ClusterMeshMetricsPortName = "apiserv-metrics" ClusterMeshKVStoreMeshContainerName = "kvstoremesh" ClusterMeshKVStoreMeshMetricsPortName = "kvmesh-metrics" ClusterMeshEtcdContainerName = "etcd" ClusterMeshEtcdMetricsPortName = "etcd-metrics" ClusterMeshServiceName = "clustermesh-apiserver" ClusterMeshSecretName = "cilium-clustermesh" // Secret which contains the clustermesh configuration ClusterMeshKVStoreMeshSecretName = "cilium-kvstoremesh" // Secret which contains the kvstoremesh configuration ClusterMeshServerSecretName = "clustermesh-apiserver-server-cert" ClusterMeshAdminSecretName = "clustermesh-apiserver-admin-cert" ClusterMeshClientSecretName = "clustermesh-apiserver-client-cert" ClusterMeshRemoteSecretName = "clustermesh-apiserver-remote-cert" ClusterMeshExternalWorkloadSecretName = "clustermesh-apiserver-external-workload-cert" SPIREServerStatefulSetName = "spire-server" SPIREServerConfigMapName = "spire-server" SPIREAgentDaemonSetName = "spire-agent" SPIREAgentConfigMapName = "spire-agent" ConnectivityCheckNamespace = "cilium-test" // renovate: datasource=docker ConnectivityCheckAlpineCurlImage = "quay.io/cilium/alpine-curl:v1.9.0@sha256:e9f5bd17e6fe42f56d926674624dc915e4d3ff3d3c42f4d9c2f10c72ee9993ff" // renovate: datasource=docker ConnectivityPerformanceImage = "" /* 140-byte string literal not displayed */ // renovate: datasource=docker ConnectivityCheckJSONMockImage = "quay.io/cilium/json-mock:v1.3.8@sha256:5aad04835eda9025fe4561ad31be77fd55309af8158ca8663a72f6abb78c2603" // renovate: datasource=docker ConnectivityDNSTestServerImage = "docker.io/coredns/coredns:1.11.1@sha256:1eeb4c7316bacb1d4c8ead65571cd92dd21e27359f0d4917f1a5822a73b75db1" // renovate: datasource=docker ConnectivityTestConnDisruptImage = "quay.io/cilium/test-connection-disruption:v0.0.14@sha256:c3fd56e326ae16f6cb63dbb2e26b4e47ec07a123040623e11399a7fe1196baa0" ConfigMapName = "cilium-config" StatusWaitDuration = 5 * time.Minute WaitRetryInterval = 2 * time.Second WaitWarningInterval = 10 * time.Second FlowWaitTimeout = 10 * time.Second FlowRetryInterval = 500 * time.Millisecond PolicyWaitTimeout = 15 * time.Second ConnectRetry = 3 ConnectRetryDelay = 3 * time.Second ConnectTimeout = 2 * time.Second RequestTimeout = 10 * time.Second UninstallTimeout = 5 * time.Minute IngressClassName = "cilium" HelmValuesSecretName = "cilium-cli-helm-values" CiliumNoScheduleLabel = "cilium.io/no-schedule" // ClustermeshMaxConnectedClusters is the default number of the maximum // number of clusters that should be allowed to connect to the Clustermesh. ClustermeshMaxConnectedClusters = 255 // Default timeout for Connectivity Test Suite (disabled by default) ConnectivityTestSuiteTimeout = 0 * time.Minute )
Variables ¶
View Source
var ( // renovate: datasource=github-releases depName=cilium/cilium Version = "v1.15.5" // HelmRepository specifies Helm repository to download Cilium charts from. HelmRepository = "https://helm.cilium.io" // CiliumScheduleAffinity is the node affinity to prevent Cilium from being schedule on // nodes labeled with CiliumNoScheduleLabel. CiliumScheduleAffinity = []string{ "affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].key=" + CiliumNoScheduleLabel, "affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].operator=NotIn", "affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].values[0]=true", } // CiliumOperatorScheduleAffinity is the node affinity to prevent Cilium from being schedule on // nodes labeled with CiliumNoScheduleLabel. CiliumOperatorScheduleAffinity = []string{ "operator.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].key=" + CiliumNoScheduleLabel, "operator.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].operator=NotIn", "operator.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].values[0]=true", } // SpireAgentScheduleAffinity is the node affinity to prevent the SPIRE agent from being scheduled on // nodes labeled with CiliumNoScheduleLabel. SpireAgentScheduleAffinity = []string{ "authentication.mutual.spire.install.agent.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].key=" + CiliumNoScheduleLabel, "authentication.mutual.spire.install.agent.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].operator=NotIn", "authentication.mutual.spire.install.agent.affinity.nodeAffinity.requiredDuringSchedulingIgnoredDuringExecution.nodeSelectorTerms[0].matchExpressions[0].values[0]=true", } ExpectedDropReasons = []string{ "Policy denied", "Policy denied by denylist", "Unsupported L2 protocol", "Unsupported L3 protocol", "Stale or unroutable IP", "Authentication required", "Service backend not found", "Unsupported protocol for NAT masquerade", "Invalid source ip", "Unknown L3 target address", "No tunnel/encapsulation endpoint (datapath BUG!)", "Host datapath not ready", "Unknown ICMPv4 code", "Forbidden ICMPv6 message", } ExpectedXFRMErrors = []string{ "inbound_forward_header", "inbound_other", "inbound_state_invalid", } // CLIVersion is the software version of the Cilium CLI. CLIVersion string )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.