Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 891 for lake (0.08 sec)

  1. pkg/kube/inject/testdata/inject/proxy-override.yaml.injected

            sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":["workload-socket","credential-socket","workload-certs","istio-envoy","ist...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/mismatch.status.yaml.golden

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: GatewayClass
    metadata:
      creationTimestamp: null
      name: istio
      namespace: default
    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Handled by Istio controller
        reason: Accepted
        status: "True"
        type: Accepted
      supportedFeatures:
      - HTTPRouteFeatureA
      - HTTPRouteFeatureB
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 520 bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml

    metadata:
      name: hello
    spec:
      selector:
        matchLabels:
          app: hello
      template:
        metadata:
          labels:
            app: hello
        spec:
          containers:
          - name: hello
            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          - name: istio-proxy
            image: auto
            securityContext:
              # iptables rules must honor this value, and must not use 1337
              runAsUser: 1234
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 480 bytes
    - Viewed (0)
  4. pilot/pkg/xds/sds_test.go

    			})
    			cc := s.KubeClient().Kube().(*fake.Clientset)
    
    			cc.Fake.Lock()
    			if tt.accessReviewResponse != nil {
    				cc.Fake.PrependReactor("create", "subjectaccessreviews", tt.accessReviewResponse)
    			} else {
    				xds.DisableAuthorizationForSecret(cc)
    			}
    			cc.Fake.Unlock()
    
    			gen := s.Discovery.Generators[v3.SecretType]
    			tt.request.Start = time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. pkg/proxy/config/config_test.go

    	synced  bool
    	updated chan []*v1.Service
    	process func([]*v1.Service)
    }
    
    func NewServiceHandlerMock() *ServiceHandlerMock {
    	shm := &ServiceHandlerMock{
    		state:   make(map[types.NamespacedName]*v1.Service),
    		updated: make(chan []*v1.Service, 5),
    	}
    	shm.process = func(services []*v1.Service) {
    		shm.updated <- services
    	}
    	return shm
    }
    
    func (h *ServiceHandlerMock) OnServiceAdd(service *v1.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/manager_test.go

    			},
    		}, nil
    	}
    
    	return s.unprepareResourcesResponse, nil
    }
    
    type tearDown func()
    
    type fakeDRAServerInfo struct {
    	// fake DRA server
    	server *fakeDRADriverGRPCServer
    	// fake DRA plugin socket name
    	socketName string
    	// teardownFn stops fake gRPC server
    	teardownFn tearDown
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:29 UTC 2024
    - 42K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-openshift.yaml

          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 21:30:10 UTC 2024
    - 482 bytes
    - Viewed (0)
  8. tests/integration/pilot/locality_test.go

    					},
    					expectAllTrafficTo(destB.Config().Service),
    				},
    				{
    					"Failover/CDS",
    					LocalityInput{
    						LocalitySetting: localityFailover,
    						Resolution:      "DNS",
    						Local:           "fake-should-fail.example.com",
    						NearLocal:       destA.Config().Service,
    						Remote:          destB.Config().Service,
    					},
    					expectAllTrafficTo(destA.Config().Service),
    				},
    				{
    					"Failover/EDS",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    				Clientset: fake.NewSimpleClientset(&v1.PodList{Items: []v1.Pod{*testutil.NewPod("pod0", "node0")}}),
    			},
    			fakeGetPodsAssignedToNode: func(c *fake.Clientset) func(string) ([]*v1.Pod, error) {
    				i := 0
    				f := fakeGetPodsAssignedToNode(c)
    				return func(nodeName string) ([]*v1.Pod, error) {
    					i++
    					if i == 1 {
    						return nil, fmt.Errorf("fake error")
    					}
    					return f(nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  10. pkg/controller/ttl/ttl_controller_test.go

    limitations under the License.
    */
    
    package ttl
    
    import (
    	"context"
    	"testing"
    
    	"k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/kubernetes/fake"
    	listers "k8s.io/client-go/listers/core/v1"
    	core "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2/ktesting"
    
    	"github.com/stretchr/testify/assert"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top