Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for podname (0.11 sec)

  1. pkg/security/security.go

    type KubernetesInfo struct {
    	PodName           string
    	PodNamespace      string
    	PodUID            string
    	PodServiceAccount string
    }
    
    func (k KubernetesInfo) String() string {
    	return fmt.Sprintf("Pod{Name: %s, Namespace: %s, UID: %s, ServiceAccount: %s}", k.PodName, k.PodNamespace, k.PodUID, k.PodServiceAccount)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/productpage.html

                    <div class="font-semibold text-gray-900">{{ review.reviewer }}</div>
                    <div class="mt-0.5 text-gray-600 font-mono">Reviews served by: 
                      {{ reviews.podname }}
                      {% if reviews.clustername != "null" %}
                      on cluster <div>{{ reviews.clustername }}</div>
                      {% endif %}
                    </div>
                  </div>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    		r,
    		namespace,
    		namespace2,
    	)
    }
    
    // NewPodMissingProxy returns a new diag.Message based on PodMissingProxy.
    func NewPodMissingProxy(r *resource.Instance, podName string) diag.Message {
    	return diag.NewMessage(
    		PodMissingProxy,
    		r,
    		podName,
    	)
    }
    
    // NewSchemaValidationError returns a new diag.Message based on SchemaValidationError.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/app/cmd.go

    	log.Debugf("proxy IPAddresses: %v", proxyArgs.IPAddresses)
    
    	// After IP addresses are set, let us discover IPMode.
    	proxyArgs.DiscoverIPMode()
    
    	// Extract pod variables.
    	proxyArgs.ID = proxyArgs.PodName + "." + proxyArgs.PodNamespace
    
    	// If not set, set a default based on platform - podNamespace.svc.cluster.local for
    	// K8S
    	proxyArgs.DNSDomain = getDNSDomain(proxyArgs.PodNamespace, proxyArgs.DNSDomain)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top