Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Corefile (0.23 sec)

  1. cmd/kubeadm/app/phases/upgrade/preflight.go

    // that are unsupported for migration.
    func checkUnsupportedPlugins(client clientset.Interface) error {
    	klog.V(1).Infoln("validating if there are any unsupported CoreDNS plugins in the Corefile")
    	_, corefile, currentInstalledCoreDNSversion, err := dns.GetCoreDNSInfo(client)
    	if err != nil {
    		return err
    	}
    
    	currentInstalledCoreDNSversion = strings.TrimLeft(currentInstalledCoreDNSversion, "v")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. cluster/addons/dns/coredns/coredns.yaml.in

              readOnlyRootFilesystem: true
          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
        prometheus.io/scrape: "true"
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

            configMap:
              name: kube-dns
              optional: true
          - name: config-volume
            configMap:
              name: node-local-dns
              items:
                - key: Corefile
                  path: Corefile.base
    ---
    # A headless service is a service with a service IP but instead of load-balancing it will return the IPs of our associated Pods.
    # We use this to expose metrics to Prometheus.
    apiVersion: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. cluster/addons/dns/coredns/coredns.yaml.base

              readOnlyRootFilesystem: true
          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
        prometheus.io/scrape: "true"
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. cluster/addons/dns/coredns/coredns.yaml.sed

              readOnlyRootFilesystem: true
          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: kube-dns
      namespace: kube-system
      annotations:
        prometheus.io/port: "9153"
        prometheus.io/scrape: "true"
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/dns/manifests.go

              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    `
    
    	// CoreDNSConfigMap is the CoreDNS ConfigMap manifest
    	CoreDNSConfigMap = `
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: coredns
      namespace: kube-system
    data:
      Corefile: |
        .:53 {
            errors
            health {
               lameduck 5s
            }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 09:59:39 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/runtime/runtime-gdb_unix_test.go

    	}
    
    	coreFile := "core"
    	if coreUsesPID {
    		coreFile += fmt.Sprintf(".%d", pid)
    	}
    
    	// Execute gdb commands.
    	args := []string{"-nx", "-batch",
    		"-iex", "add-auto-load-safe-path " + filepath.Join(testenv.GOROOT(t), "src", "runtime"),
    		"-ex", "backtrace",
    		filepath.Join(dir, "a.exe"),
    		filepath.Join(dir, coreFile),
    	}
    	cmd = testenv.Command(t, "gdb", args...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListenerTest.groovy

                name >> "SomeFile.java"
            }
            diagnostic.lineNumber >> 1
            diagnostic.columnNumber | diagnostic.startPosition | diagnostic.endPosition >> Diagnostic.NOPOS
    
            when:
            diagnosticToProblemListener.buildProblem(diagnostic, spec)
    
            then:
            1 * spec.fileLocation("SomeFile.java")
            1 * spec.lineInFileLocation("SomeFile.java", 1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:58:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/scopeids/PersistentScopeIdLoaderTest.groovy

            when:
            def id = loader.user.id
    
            then:
            1 * globalScopedCacheBuilderFactory.baseDirForCrossVersionCache("user-id.txt") >> storeFile
    
            and:
            1 * storeFactory.create(storeFile, _) >> store
    
            and:
            1 * store.maybeUpdate(_) >> { ObjectHolder.UpdateAction action ->
                action.update(null)
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    	}
    	f.SortBlocks()
    }
    
    func (f *WorkFile) DropUse(path string) error {
    	for _, d := range f.Use {
    		if d.Path == path {
    			d.Syntax.markRemoved()
    			*d = Use{}
    		}
    	}
    	return nil
    }
    
    func (f *WorkFile) AddReplace(oldPath, oldVers, newPath, newVers string) error {
    	return addReplace(f.Syntax, &f.Replace, oldPath, oldVers, newPath, newVers)
    }
    
    func (f *WorkFile) DropReplace(oldPath, oldVers string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top