Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Corefile (0.33 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns.go

    	canMigrateCorefile := true
    
    	if corefile == "" || migration.Default("", corefile) {
    		// If the Corefile is empty or default, the latest default Corefile will be applied
    		if err := apiclient.CreateOrUpdateConfigMap(client, coreDNSConfigMap); err != nil {
    			return err
    		}
    	} else if corefileMigrationRequired {
    		// If migration is required, try and migrate the Corefile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    			if !strings.EqualFold(migratedConfigMap.Data["Corefile"], tc.expectedCorefileData) {
    				t.Fatalf("expected to get %v, but got %v", tc.expectedCorefileData, migratedConfigMap.Data["Corefile"])
    			}
    		})
    	}
    }
    
    func createClientAndCoreDNSManifest(t *testing.T, corefile, coreDNSVersion string) *clientsetfake.Clientset {
    	client := clientsetfake.NewSimpleClientset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. cluster/gce/upgrade.sh

         "${download_dir}/corefile-tool-${host_arch}" migrate --from "${CURRENT_COREDNS_VERSION}" --to "${NEW_COREDNS_VERSION}" --corefile "${download_dir}/Corefile-old" > "${download_dir}/Corefile"
         "${KUBE_ROOT}/cluster/kubectl.sh" -n kube-system create configmap coredns --from-file "${download_dir}/Corefile" -o yaml --dry-run=client | "${KUBE_ROOT}/cluster/kubectl.sh" apply -f -
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. LICENSES/vendor/github.com/coredns/corefile-migration/LICENSE

    = vendor/github.com/coredns/corefile-migration licensed under: =
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 11.2K bytes
    - Viewed (0)
  5. go.mod

    	github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
    	github.com/blang/semver/v4 v4.0.0
    	github.com/container-storage-interface/spec v1.9.0
    	github.com/containerd/cgroups v1.1.0
    	github.com/coredns/corefile-migration v1.0.21
    	github.com/coreos/go-oidc v2.2.1+incompatible
    	github.com/coreos/go-systemd/v22 v22.5.0
    	github.com/cpuguy83/go-md2man/v2 v2.0.3
    	github.com/cyphar/filepath-securejoin v0.2.4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/MoreFiles.java

     *
     * @since 21.0
     * @author Colin Decker
     */
    @J2ktIncompatible
    @GwtIncompatible
    @J2ObjCIncompatible // java.nio.file
    @ElementTypesAreNonnullByDefault
    public final class MoreFiles {
    
      private MoreFiles() {}
    
      /**
       * Returns a view of the given {@code path} as a {@link ByteSource}.
       *
       * <p>Any {@linkplain OpenOption open options} provided are used when opening streams to the file
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            def someFile = parentDir.file("directory/somefile.txt").createFile()
            when:
            allowFileSystemAccess(true)
            def snapshot = read(someFile)
            then:
            assertIsFileSnapshot(snapshot, someFile)
    
            when:
            allowFileSystemAccess(false)
            fileSystemAccess.write([someFile.absolutePath]) {
                someFile << "Updated"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

        }
    
        def createTarTaskForCustomDistribution() {
            when:
            buildFile << """
                apply plugin:'distribution'
    
                distributions {
                    custom{
                        contents {
                            from { "someFile" }
                        }
                    }
                }
    
                """
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/TextResourceScriptSourceTest.java

            ScriptSource source1 = forFile(new File(testDir, "build.gradle"));
            ScriptSource source2 = forFile(new File(testDir, "subdir/build.gradle"));
            assertThat(source1.getClassName(), not(equalTo(source2.getClassName())));
    
            ScriptSource source3 = forFile(new File(testDir, "build.gradle"));
            assertThat(source1.getClassName(), equalTo(source3.getClassName()));
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 01:04:05 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. src/cmd/go/internal/workcmd/edit.go

    		workFile.DropToolchainStmt()
    	} else if *editToolchain != "" {
    		if err := workFile.AddToolchainStmt(*editToolchain); err != nil {
    			base.Fatalf("go: internal error: %v", err)
    		}
    	}
    
    	if len(workedits) > 0 {
    		for _, edit := range workedits {
    			edit(workFile)
    		}
    	}
    
    	workFile.SortBlocks()
    	workFile.Cleanup() // clean file after edits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top