Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 246 for Getcwd (0.12 sec)

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. cluster/images/etcd/migrate/migrate_server.go

    			if err != nil {
    				klog.Infof("Still waiting for etcd to start, current error: %v", err)
    				// keep waiting
    			} else {
    				klog.Infof("Etcd on port %d is up.", r.cfg.port)
    				r.cmd = etcdCmd
    				return nil
    			}
    		case <-done:
    			err = etcdCmd.Process.Kill()
    			if err != nil {
    				return fmt.Errorf("error killing etcd: %v", err)
    			}
    			return fmt.Errorf("timed out waiting for etcd on port %d", r.cfg.port)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 30 16:29:59 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. cluster/images/etcd-version-monitor/Makefile

    	cp etcd-version-monitor.go Dockerfile $(TEMP_DIR)
    
    	# Compile etcd-version-monitor.
    	docker run --rm -it \
    	    -v $(shell pwd)/../../../:/go/src/k8s.io/kubernetes \
    	    -v $(TEMP_DIR):/build \
    	    -e GOARCH=$(ARCH) \
    	    golang:$(GOLANG_VERSION) \
    	    /bin/bash -c "CGO_ENABLED=0 go build -o /build/etcd-version-monitor k8s.io/kubernetes/cluster/images/etcd-version-monitor"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 07:06:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. cluster/images/etcd-version-monitor/README.md

    # etcd-version-monitor
    
    This is a tool for exporting etcd metrics and supplementing them with etcd
    server binary version and cluster version. These metrics are in
    prometheus format and can be scraped by a prometheus server.
    The metrics are exposed at the http://localhost:9101/metrics endpoint.
    
    For etcd 3.1+, the
    [go-grpc-prometheus](https://github.com/grpc-ecosystem/go-grpc-prometheus)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 22 04:03:37 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  10. hack/make-rules/test-integration.sh

        return
      fi
      kube::log::status "Cleaning up etcd"
      kube::etcd::cleanup
      CLEANUP_REQUIRED=
      kube::log::status "Integration test cleanup complete"
    }
    
    runTests() {
      kube::log::status "Starting etcd instance"
      CLEANUP_REQUIRED=1
      kube::etcd::start
      # shellcheck disable=SC2034
      local ETCD_SCRAPE_PID # Set in kube::etcd::start_scraping, used in cleanup
      kube::etcd::start_scraping
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top