Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 544 for kubetest (0.25 sec)

  1. tests/integration/pilot/gw_topology_test.go

    			cs := t.Clusters().Default().(*kubecluster.Cluster)
    			retry.UntilSuccessOrFail(t, func() error {
    				_, err := kubetest.CheckPodsAreReady(kubetest.NewPodFetch(cs, gatewayNs.Name(), "istio=ingressgateway"))
    				return err
    			}, retry.Timeout(time.Minute*2), retry.Delay(time.Second))
    
    			// Apply an envoy filter in a subtest to the existing gateway
    			t.NewSubTest("filter").Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. cluster/log-dump/README.md

    To make the mechanism support your Kubernetes provider in tests using `kubekins-e2e`, modify
    the `logDumpPath` function in
    [kubetest](https://github.com/kubernetes/test-infra/tree/master/kubetest) to handle your provider and
    adapt [log-dump.sh](https://github.com/kubernetes/test-infra/blob/master/logexporter/cluster/log-dump.sh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 15 08:58:09 UTC 2020
    - 1009 bytes
    - Viewed (0)
  3. cluster/kubemark/iks/config-default.sh

    NUM_NODES="${NUM_NODES:-2}"
    # spec of real workers in spawnTester cluster
    NODE_SIZE=${NODE_SIZE:-u2c.2x4}
    DESIRED_NODES="${DESIRED_NODES:-10}"
    # number of hollow nodes
    # TODO: once IKS supports `kubetest`, i.e. the base cluster provisioning implemented in `kubetest`
    # we can use NUM_NODES=${KUBEMARK_NUM_NODES:-10} to avoid usage of KUBEMARK_NUM_NODES
    # more context, see https://github.com/kubernetes/kubernetes/pull/76909#discussion_r277735942
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 17:15:29 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisioned_upgrade_test.go

    	if err := revisionedInstance.Restart(); err != nil {
    		t.Fatalf("revisioned instance rollout failed with: %v", err)
    	}
    	fetch := kubetest.NewPodMustFetch(t.Clusters().Default(), revisionedInstance.Config().Namespace.Name(), fmt.Sprintf("app=%s", revisionedInstance.Config().Service)) // nolint: lll
    	pods, err := kubetest.CheckPodsAreReady(fetch)
    	if err != nil {
    		t.Fatalf("failed to retrieve upgraded pods: %v", err)
    	}
    	for _, p := range pods {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/revisions/revision_tag_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	kubetest "istio.io/istio/pkg/test/kube"
    )
    
    func TestRevisionTags(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tests/integration/ambient/cacert_rotation_test.go

    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	kubetest "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/security/pkg/pki/util"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. cluster/addons/rbac/legacy-kubelet-user/kubelet-binding.yaml

    # The GKE environments don't have kubelets with certificates that
    # identify the system:nodes group.  They use the kubelet identity
    # TODO: remove this once new nodes are granted individual identities and the
    # NodeAuthorizer is enabled.
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kubelet-cluster-admin
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 565 bytes
    - Viewed (0)
  8. cluster/addons/rbac/legacy-kubelet-user-disable/kubelet-binding.yaml

    # This is required so that old clusters don't remove required bindings for 1.5
    # kubelets to function.
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kubelet-cluster-admin
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:node
    subjects: []
    ---
    # This is required so that new clusters still have bootstrap permissions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 782 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubelet/kubelet.go

    	if err != nil {
    		fmt.Println("[kubelet-start] No supported init system detected, won't make sure the kubelet is running properly.")
    		return
    	}
    
    	if !initSystem.ServiceExists(kubeadmconstants.Kubelet) {
    		fmt.Println("[kubelet-start] Couldn't detect a kubelet service, can't make sure the kubelet is running properly.")
    	}
    
    	// This runs "systemctl daemon-reload && systemctl restart kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 15 16:01:35 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/kubelet.go

    		Name:    "kubelet-start",
    		Short:   "Write kubelet settings and (re)start the kubelet",
    		Long:    "Write a file with KubeletConfiguration and an environment file with node specific kubelet settings, and then (re)start kubelet.",
    		Example: kubeletStartPhaseExample,
    		Run:     runKubeletStart,
    		InheritFlags: []string{
    			options.CfgPath,
    			options.ImageRepository,
    			options.NodeCRISocket,
    			options.NodeName,
    			options.Patches,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 20 09:18:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top