Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 681 for Getcwd (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cmd/kubeadm/app/phases/certs/doc.go

    		 - apiserver.key
    		 - apiserver-kubelet-client.crt
    		 - apiserver-kubelet-client.key
    		 - apiserver-etcd-client.crt
    		 - apiserver-etcd-client.key
    		 - etcd/ca.crt
    		 - etcd/ca.key
    		 - etcd/server.crt
    		 - etcd/server.key
    		 - etcd/peer.crt
    		 - etcd/peer.key
    		 - etcd/healthcheck-client.crt
    		 - etcd/healthcheck-client.key
    		 - sa.pub
    		 - sa.key
    		 - front-proxy-ca.crt
    		 - front-proxy-ca.key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 02 09:38:56 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  6. .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)
  7. cmd/kubeadm/app/cmd/phases/join/checketcd.go

    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("check-etcd phase invoked with an invalid data struct")
    	}
    
    	// Skip if this is not a control plane
    	if data.Cfg().ControlPlane == nil {
    		return nil
    	}
    
    	cfg, err := data.InitCfg()
    	if err != nil {
    		return err
    	}
    
    	if cfg.Etcd.External != nil {
    		fmt.Println("[check-etcd] Skipping etcd check in external mode")
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 02 11:25:47 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. cluster/images/etcd/migrate/migrate_client.go

    import (
    	"bytes"
    	"context"
    	"fmt"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    	"time"
    
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"google.golang.org/grpc"
    	"k8s.io/klog/v2"
    )
    
    // CombinedEtcdClient provides an implementation of EtcdMigrateClient using a combination of the etcd v2 client, v3 client
    // and etcdctl commands called via the shell.
    type CombinedEtcdClient struct {
    	cfg *EtcdMigrateCfg
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  9. cluster/images/etcd/migrate/migrator.go

    	}
    
    	// Start current version of etcd.
    	runner := m.newServer()
    	klog.Infof("Starting etcd version %s to capture rollback snapshot.", current.version)
    	err = runner.Start(current.version)
    	if err != nil {
    		klog.Fatalf("Unable to automatically downgrade etcd: starting etcd version %s to capture rollback snapshot failed: %v", current.version, err)
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/storage/objectreader.go

    limitations under the License.
    */
    
    package storage
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    	"path"
    	"time"
    
    	"go.etcd.io/etcd/client/pkg/v3/transport"
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"google.golang.org/grpc"
    	apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 4.7K bytes
    - Viewed (0)
Back to top