- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 226 for sidecar (0.09 sec)
-
istioctl/pkg/writer/compare/sds/util.go
s.dest = dest return s } // State sets the state of the secret on the agent or sidecar func (s *secretItemBuilder) State(state string) SecretItemBuilder { s.state = state return s } // TrustDomain sets the trust domain of the secret on the agent or sidecar func (s *secretItemBuilder) TrustDomain(trustDomain string) SecretItemBuilder { s.trustDomain = trustDomain return s }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 28 19:52:53 UTC 2024 - 8.5K bytes - Viewed (0) -
cni/pkg/plugin/kubernetes.go
} } } return pi } // containers fetches all containers in the pod. // This is used to extract init containers (istio-init and istio-validation), and the sidecar. // The sidecar can be a normal container or init in Kubernetes 1.28+ func containers(pod *v1.Pod) []v1.Container { res := make([]v1.Container, 0, len(pod.Spec.Containers)+len(pod.Spec.InitContainers))
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 3.7K bytes - Viewed (0) -
manifests/addons/values-prometheus.yaml
alertmanager: enabled: false prometheus-pushgateway: enabled: false kube-state-metrics: enabled: false prometheus-node-exporter: enabled: false server: podLabels: sidecar.istio.io/inject: "false" persistentVolume: enabled: false # Use port 9090 to match Istio documentation service: servicePort: 9090 readinessProbeInitialDelay: 0
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Dec 01 03:42:22 UTC 2023 - 788 bytes - Viewed (0) -
istioctl/pkg/kubeinject/testdata/deployment/hello-with-proxyconfig-anno.yaml.injected
annotations: prometheus.io/path: /stats/prometheus prometheus.io/port: "15020" prometheus.io/scrape: "true" proxy.istio.io/config: '{ "holdApplicationUntilProxyStarts": true }' sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":null,"imagePullSecrets":null,"revision":"default"}' creationTimestamp: null labels: app: hello tier: backend
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1.1K bytes - Viewed (0) -
manifests/addons/values-grafana.yaml
# Avoid creating a bunch of RBAC rules for features we are not enabling rbac: create: false pspEnabled: false # Disable test pods testFramework: enabled: false podLabels: sidecar.istio.io/inject: "false" # Demo only, so we will have no authentication admin: existingSecret: "" ldap: existingSecret: true env: GF_SECURITY_ADMIN_USER: "admin" GF_SECURITY_ADMIN_PASSWORD: "admin"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 12 20:46:28 UTC 2024 - 1.7K bytes - Viewed (0) -
istioctl/pkg/dashboard/dashboard.go
if err != nil { return err } } return portForward(podName, ns, fmt.Sprintf("Envoy sidecar %s", podName), "http://%s", bindAddress, proxyAdminPort, kubeClient, c.OutOrStdout(), browser) }, } return cmd } // port-forward to sidecar Envoy admin port; open browser func envoyDashCmd(ctx cli.Context) *cobra.Command { return createDashCmd(ctx, CreateProxyDashCmdConfig{
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 15 01:29:35 UTC 2024 - 20.5K bytes - Viewed (0) -
istioctl/pkg/kubeinject/testdata/inject-config-iop.yaml
templates: sidecar: |- spec: initContainers: - name: istio-init image: docker.io/istio/proxy_init:unittest-{{.Values.global.tag}} containers: - name: istio-proxy
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 252 bytes - Viewed (0) -
cni/pkg/repair/repair.go
var repairLog = scopes.CNIAgent func StartRepair(ctx context.Context, cfg config.RepairConfig) { if !cfg.Enabled { repairLog.Info("CNI repair controller is disabled") return } repairLog.Info("starting CNI sidecar repair controller") client, err := clientSetup() if err != nil { repairLog.Fatalf("CNI repair could not construct clientSet: %s", err) } rc, err := NewRepairController(client, cfg) if err != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jun 28 19:12:54 UTC 2024 - 1.5K bytes - Viewed (0) -
manifests/addons/values-kiali.yaml
# We set up anonymous authentication as this is for demos. auth: strategy: anonymous deployment: pod_labels: sidecar.istio.io/inject: "false" ingress_enabled: false image_pull_policy: IfNotPresent login_token: signing_key: CHANGEME00000000 external_services: # Kiali will not start up without tracing service. We don't want to require it. tracing:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 21 15:14:56 UTC 2024 - 385 bytes - Viewed (0) -
cni/pkg/plugin/plugin_cni_conformance.go
// This is important for CNI plugin conformance func TestLoadArgs(t *testing.T) { kubeletArgs := "IgnoreUnknown=1;K8S_POD_NAMESPACE=istio-system;" + "K8S_POD_NAME=istio-sidecar-injector-8489cf78fb-48pvg;" + "K8S_POD_INFRA_CONTAINER_ID=3c41e946cf17a32760ff86940a73b06982f1815e9083cf2f4bfccb9b7605f326" + "K8S_POD_UID=a09038c7-df3c-4c0e-8667-487b1fe8055f" k8sArgs := K8sArgs{}
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed May 29 21:50:09 UTC 2024 - 1.5K bytes - Viewed (0)