Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for podname (0.1 sec)

  1. pkg/config/analysis/msg/messages.yaml

        level: Warning
        description: "A pod is missing the Istio proxy."
        template: "The pod %s is missing the Istio proxy. This can often be resolved by restarting or redeploying the workload."
        args:
          - name: podName
            type: string
    
      # IST0104 RETIRED
      # IST0105 RETIRED
    
      - name: "SchemaValidationError"
        code: IST0106
        level: Error
        description: "The resource has a schema validation error."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      optional string attacher = 1;
    
      // source represents the volume that should be attached.
      optional VolumeAttachmentSource source = 2;
    
      // nodeName represents the node that the volume should be attached to.
      optional string nodeName = 3;
    }
    
    // VolumeAttachmentStatus is the status of a VolumeAttachment request.
    message VolumeAttachmentStatus {
      // attached indicates the volume is successfully attached.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. tests/integration/pilot/istioctl_test.go

    		})
    }
    
    func getPodID(i echo.Instance) (string, error) {
    	wls, err := i.Workloads()
    	if err != nil {
    		return "", nil
    	}
    
    	for _, wl := range wls {
    		return wl.PodName(), nil
    	}
    
    	return "", fmt.Errorf("no workloads")
    }
    
    func TestProxyConfig(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/storage/v1/generated.proto

      optional string attacher = 1;
    
      // source represents the volume that should be attached.
      optional VolumeAttachmentSource source = 2;
    
      // nodeName represents the node that the volume should be attached to.
      optional string nodeName = 3;
    }
    
    // VolumeAttachmentStatus is the status of a VolumeAttachment request.
    message VolumeAttachmentStatus {
      // attached indicates the volume is successfully attached.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/context.go

    }
    
    func (node *Proxy) GetNodeName() string {
    	if node.Metadata != nil && len(node.Metadata.NodeName) > 0 {
    		return node.Metadata.NodeName
    	}
    	// fall back to get the node name from labels
    	// this can happen for an "old" proxy with no `Metadata.NodeName` set
    	// TODO: remove this when 1.16 is EOL?
    	return node.Labels[label.LabelHostname]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    }
    
    func (s *Server) initNodeUntaintController(args *PilotArgs) {
    	s.addStartFunc("nodeUntainter controller", func(stop <-chan struct{}) error {
    		go leaderelection.
    			NewLeaderElection(args.Namespace, args.PodName, leaderelection.NodeUntaintController, args.Revision, s.kubeClient).
    			AddRunFunction(func(leaderStop <-chan struct{}) {
    				nodeUntainter := untaint.NewNodeUntainter(leaderStop, s.kubeClient, args.CniNamespace, args.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/extensions_test.go

    						},
    					},
    				},
    			},
    		},
    		{
    			desc: "Build VMConfig on top of a base VMConfig",
    			vm: &extensions.VmConfig{
    				Env: []*extensions.EnvVar{
    					{
    						Name:      "POD_NAME",
    						ValueFrom: extensions.EnvValueSource_HOST,
    					},
    					{
    						Name:  "ENV1",
    						Value: "VAL1",
    					},
    				},
    			},
    			policy: extensions.PullPolicy_UNSPECIFIED_POLICY,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/running_golden.json

    test","istio-locality":"regionA/zoneB/sub_zoneC","version":"v1alpha1"},"NAME":"svc-0-0-0-6944fb884d-4pgx8","NAMESPACE":"test","OUTLIER_LOG_PATH":"/dev/stdout","PILOT_SAN":["spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account"],"POD_NAME":"svc-0-0-0-6944fb884d-4pgx8","PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/running","controlPlaneAuthPolicy":"MUTUAL_TLS","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"mypilot:1001","drainDurat...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

              value: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{ .Values.global.istioNamespace }}.svc:15012
            {{- end }}
            - name: POD_NAME
              valueFrom:
                fieldRef:
                  fieldPath: metadata.name
            - name: POD_NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            - name: INSTANCE_IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              {{- end }}
              - name: NODE_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: spec.nodeName
              - name: POD_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: metadata.name
              - name: POD_NAMESPACE
                valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top