Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 870 for untainer (0.15 sec)

  1. pilot/pkg/controllers/untaint/nodeuntainter.go

    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/kube/kubetypes"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("untaint", "CNI node-untaint controller")
    
    const (
    	TaintName = "cni.istio.io/not-ready"
    )
    
    var istioCniLabels = map[string]string{
    	"k8s-app": "istio-cni-node",
    }
    
    type NodeUntainter struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Container.java

     */
    
    package org.gradle.plugins.ide.eclipse.model;
    
    import groovy.util.Node;
    
    /**
     * A container classpath entry.
     */
    public class Container extends AbstractClasspathEntry {
    
        public Container(Node node) {
            super(node);
        }
    
        public Container(String path) {
            super(path);
        }
    
        @Override
        public String getKind() {
            return "con";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/multi-container.yaml.injected

      selector:
        matchLabels:
          app: app
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: name1
            kubectl.kubernetes.io/default-logs-container: name1
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pilot/pkg/controllers/untaint/nodeuntainter_test.go

    	s := newNodeUntainterTestServer(t)
    	s.addTaintedNodes(t, "node1", "node2")
    	s.addPod(t, "node2", true, cniPodLabels, "default")
    	s.addCniPod(t, "node1", true)
    
    	// wait for the untainter to run
    	s.assertNodeUntainted(t, "node1")
    	s.assertNodeTainted(t, "node2")
    }
    
    func (s *nodeTainterTestServer) assertNodeTainted(t *testing.T, node string) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/only-proxy-container.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. tests/integration/ambient/untaint/untaint_test.go

    	framework.
    		NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			// make cni not deploy to one of the nodes
    			taintNodes(ctx)
    
    			// make sure all nodes were untainted
    			retry.UntilSuccessOrFail(t, func() error {
    				nodeC := ctx.Clusters().Default().Kube().CoreV1().Nodes()
    				nodes, err := nodeC.List(ctx.Context(), metav1.ListOptions{})
    				if err != nil {
    					return err
    				}
    
    				for _, node := range nodes.Items {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainerTest.groovy

            container.newElement("b", [3, 4], null)
            expect:
            container.size == 2
            container.popConflict().toString() == "a:1,2"
            container.popConflict().toString() == "b:3,4"
        }
    
        def "pops conflicts orderly"() {
            container.newElement("c", [5, 6], null)
            container.newElement("b", [3, 4], null)
            container.newElement("a", [1, 2], null)
            expect:
            container.size == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. pkg/kubelet/util/util_test.go

    			containers:        []v1.Container{{Name: "container-1"}, {Name: "container-2"}},
    			statuses:          []v1.ContainerStatus{{Name: "container-1"}, {Name: "container-2"}},
    			idx:               1,
    			expectedContainer: v1.Container{Name: "container-2"},
    			expectedOK:        true,
    		},
    	}
    
    	for _, tc := range testCases {
    		container, ok := GetContainerByIndex(tc.containers, tc.statuses, tc.idx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 14:16:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            container.getByName("foo") == extension
            container.findByName("bar") == barExtension
    
            container.getByType(BarExtension) == barExtension
            container.findByType(FooExtension) == extension
    
            container.findByType(SomeExtension) == null
            container.findByName("i don't exist") == null
        }
    
        def "throws when unknown exception wanted by name"() {
            container.add("foo", extension)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentMetadataRuleContainerTest.groovy

            when:
            container.addRule(rule1)
            container.addClassRule(rule2)
    
            then:
            !container.isEmpty()
            !container.isClassBasedRulesOnly()
            def iterator = container.iterator()
            def ruleWrapper = iterator.next()
            !ruleWrapper.isClassBased()
            ruleWrapper.rule == rule1
            def ruleWrapper2 = iterator.next()
            ruleWrapper2.isClassBased()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top