Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 200 for Getcwd (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    		skipHealth        bool
    	}{
    		{
    			name:              "Readyz should have etcd-readiness check",
    			wantReadyzChecks:  []string{"etcd", "etcd-readiness"},
    			wantHealthzChecks: []string{"etcd"},
    			wantLivezChecks:   []string{"etcd"},
    		},
    		{
    			name:              "skip health, Readyz should not have etcd-readiness check",
    			wantReadyzChecks:  nil,
    			wantHealthzChecks: nil,
    			wantLivezChecks:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	}
    
    	// Adds a new etcd instance; in order to do this the new etcd instance should be "announced" to
    	// the existing etcd members before being created.
    	// This operation must be executed after kubelet is already started in order to minimize the time
    	// between the new etcd member is announced and the start of the static pod running the new etcd member, because during
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/etcd/local_test.go

        volumeMounts:
        - mountPath: %s/etcd
          name: etcd-data
        - mountPath: /etcd
          name: etcd-certs
      hostNetwork: true
      priority: 2000001000
      priorityClassName: system-node-critical
      securityContext:
        seccompProfile:
          type: RuntimeDefault
      volumes:
      - hostPath:
          path: /etcd
          type: DirectoryOrCreate
        name: etcd-certs
      - hostPath:
          path: %s/etcd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    }
    
    // endpointSupportsRequestWatchProgress evaluates whether RequestWatchProgress supported by current version of etcd endpoint.
    // Based on this issues:
    //   - https://github.com/etcd-io/etcd/issues/15220 - Fixed in etcd v3.4.25+ and v3.5.8+
    //   - https://github.com/etcd-io/etcd/issues/17507 - Fixed in etcd v3.4.31+ and v3.5.13+
    func endpointSupportsRequestWatchProgress(ctx context.Context, c client, endpoint string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		if _, err := oldEtcdClient.WaitForClusterAvailable(retries, retryInterval); err != nil {
    			fmt.Printf("[upgrade/etcd] Failed to healthcheck previous etcd: %v\n", err)
    			// Nothing else left to try to recover etcd cluster
    			return true, errors.Wrapf(err, "fatal error rolling back local etcd cluster manifest, the backup of etcd database is stored here:(%s)", backupEtcdDir)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. cluster/images/etcd/Makefile

    		curl -sSL --retry 5 https://github.com/etcd-io/etcd/releases/download/v$$version/etcd-v$$version-windows-amd64.zip -o etcd-v$$version-windows-amd64.zip; \
    		unzip -q -d $$etcd_release_tmp_dir etcd-v$$version-windows-amd64.zip; \
    		rm etcd-v$$version-windows-amd64.zip; \
    		$(BIN_INSTALL) $$etcd_release_tmp_dir/etcd-v$$version-windows-amd64/etcd.exe $$etcd_release_tmp_dir/etcd-v$$version-windows-amd64/etcdctl.exe $(TEMP_DIR)/; \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. cluster/images/etcd/migrate/options.go

    	flags.StringVar(&opts.dataDir, "data-dir", "",
    		"etcd data directory of etcd server to migrate. If unset fallbacks to DATA_DIRECTORY env.")
    	flags.StringSliceVar(&opts.bundledVersions, "bundled-versions", supportedEtcdVersions,
    		"comma separated list of etcd binary versions present under the bin-dir.")
    	flags.StringVar(&opts.etcdDataPrefix, "etcd-data-prefix", "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. hack/unwanted-dependencies.json

            "go.etcd.io/etcd/client/v3",
            "go.etcd.io/etcd/server/v3",
            "k8s.io/apiserver"
          ],
          "github.com/grpc-ecosystem/grpc-gateway": [
            "go.etcd.io/etcd/api/v3",
            "go.etcd.io/etcd/server/v3"
          ],
          "github.com/json-iterator/go": [
            "github.com/prometheus/client_golang",
            "go.etcd.io/etcd/client/v2",
            "go.etcd.io/etcd/server/v3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. .github/workflows/iam-integrations.yaml

        runs-on: ubuntu-latest
    
        services:
          openldap:
            image: quay.io/minio/openldap
            ports:
              - "389:389"
              - "636:636"
            env:
              LDAP_ORGANIZATION: "MinIO Inc"
              LDAP_DOMAIN: "min.io"
              LDAP_ADMIN_PASSWORD: "admin"
          etcd:
            image: "quay.io/coreos/etcd:v3.5.1"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. build/dependencies.yaml

          match: gcr.io/etcd-development/etcd
        - path: test/utils/image/manifest.go
          match: configs\[Etcd\] = Config{list\.GcEtcdRegistry, "etcd", "\d+\.\d+.\d+(-(alpha|beta|rc).\d+)?(-\d+)?"}
    
      - name: "etcd-image"
        version: 3.5.14
        refPaths:
        - path: cluster/images/etcd/Makefile
          match: BUNDLED_ETCD_VERSIONS\?|LATEST_ETCD_VERSION\?
        - path: cluster/images/etcd/migrate/options.go
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top