Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 104 for Getcwd (0.12 sec)

  1. helm-releases/minio-5.2.0.tgz

    value: {{ .Values.oidc.displayName }} {{- end }} {{- if .Values.etcd.endpoints }} - name: MINIO_ETCD_ENDPOINTS value: {{ join "," .Values.etcd.endpoints | quote }} {{- if .Values.etcd.clientCert }} - name: MINIO_ETCD_CLIENT_CERT value: "/tmp/credentials/etcd_client_cert.pem" {{- end }} {{- if .Values.etcd.clientCertKey }} - name: MINIO_ETCD_CLIENT_CERT_KEY value: "/tmp/credentials/etcd_client_cert_key.pem" {{- end }} {{- if .Values.etcd.pathPrefix }} - name: MINIO_ETCD_PATH_PREFIX value: {{ .Values.etcd.pathPrefix...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. cluster/gce/config-test.sh

    # on small nodes, like network plugins.
    NUM_ADDITIONAL_NODES=${NUM_ADDITIONAL_NODES:-}
    ADDITIONAL_MACHINE_TYPE=${ADDITIONAL_MACHINE_TYPE:-}
    
    # Set etcd image (e.g. registry.k8s.io/etcd) and version (e.g. v3.5.1-0) if you need
    # non-default version.
    export ETCD_IMAGE=${TEST_ETCD_IMAGE:-}
    export ETCD_DOCKER_REPOSITORY=${TEST_ETCD_DOCKER_REPOSITORY:-}
    export ETCD_VERSION=${TEST_ETCD_VERSION:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users_test.go

    	configCmds := []string{
    		"etcd",
    		"endpoints=" + etcdServer,
    		"path_prefix=" + mustGetUUID(),
    	}
    	_, err := s.adm.SetConfigKV(ctx, strings.Join(configCmds, " "))
    	if err != nil {
    		c.Fatalf("unable to setup Etcd for tests: %v", err)
    	}
    
    	s.RestartIAMSuite(c)
    }
    
    func (s *TestSuiteIAM) SetUpSuite(c *check) {
    	// If etcd backend is specified and etcd server is not present, the test
    	// is skipped.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. helm/minio/values.yaml

        # Scrape interval, for example `interval: 30s`
        interval: ~
        # Scrape timeout, for example `scrapeTimeout: 10s`
        scrapeTimeout: ~
    
    ## ETCD settings: https://github.com/minio/minio/blob/master/docs/sts/etcd.md
    ## Define endpoints to enable this section.
    etcd:
      endpoints: []
      pathPrefix: ""
      corednsPathPrefix: ""
      clientCert: ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		cas:           map[string]*CAExpirationHandler{},
    	}
    
    	// gets the list of certificates that are expected according to the current cluster configuration
    	certListFunc := certsphase.GetDefaultCertList
    	if cfg.Etcd.External != nil {
    		certListFunc = certsphase.GetCertsWithoutEtcd
    	}
    	certTree, err := certListFunc().AsMap().CertTree()
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. cmd/admin-handlers-config-kv.go

    import (
    	"bytes"
    	"context"
    	"encoding/json"
    	"io"
    	"net/http"
    	"strconv"
    	"strings"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/config/etcd"
    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	idplugin "github.com/minio/minio/internal/config/identity/plugin"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/crypto/tls/bogo_shim_test.go

    		var j struct {
    			Dir string
    		}
    		if err := json.Unmarshal(output, &j); err != nil {
    			t.Fatalf("failed to parse 'go mod download' output: %s", err)
    		}
    		bogoDir = j.Dir
    	}
    
    	cwd, err := os.Getwd()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	resultsFile := filepath.Join(t.TempDir(), "results.json")
    
    	args := []string{
    		"test",
    		".",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/go/script_test.go

    // cmd/go script.
    func initScriptDirs(t testing.TB, s *script.State) (telemetryDir string) {
    	must := func(err error) {
    		if err != nil {
    			t.Helper()
    			t.Fatal(err)
    		}
    	}
    
    	work := s.Getwd()
    	must(s.Setenv("WORK", work))
    
    	telemetryDir = filepath.Join(work, "telemetry")
    	must(os.MkdirAll(telemetryDir, 0777))
    	must(s.Setenv("TEST_TELEMETRY_DIR", filepath.Join(work, "telemetry")))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/node.go

    	flagSet.BoolVar(&nodeOptions.etcdUpgrade, options.EtcdUpgrade, nodeOptions.etcdUpgrade, "Perform the upgrade of etcd.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/patches/patches.go

    	knownExtensions  = []string{"json", "yaml"}
    
    	regExtension = regexp.MustCompile(`.+\.(` + strings.Join(knownExtensions, "|") + `)$`)
    
    	knownTargets = []string{
    		kubeadmconstants.Etcd,
    		kubeadmconstants.KubeAPIServer,
    		kubeadmconstants.KubeControllerManager,
    		kubeadmconstants.KubeScheduler,
    		KubeletConfiguration,
    		CoreDNSDeployment,
    	}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top