Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for cacertPath (0.28 sec)

  1. security/pkg/k8s/chiron/utils.go

    }
    
    // Read CA certificate and check whether it is a valid certificate.
    func readCACert(caCertPath string) ([]byte, error) {
    	caCert, err := os.ReadFile(caCertPath)
    	if err != nil {
    		log.Errorf("failed to read CA cert, cert. path: %v, error: %v", caCertPath, err)
    		return nil, fmt.Errorf("failed to read CA cert, cert. path: %v, error: %v", caCertPath, err)
    	}
    
    	b, _ := pem.Decode(caCert)
    	if b == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/providers/mock/mockcaclient.go

    package mock
    
    import (
    	"encoding/pem"
    	"fmt"
    	"path"
    	"sync/atomic"
    	"time"
    
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    var (
    	sampleKeyCertsPath = "../../../../samples/certs/"
    	caCertPath         = path.Join(sampleKeyCertsPath, "ca-cert.pem")
    	caKeyPath          = path.Join(sampleKeyCertsPath, "ca-key.pem")
    	certChainPath      = []string{path.Join(sampleKeyCertsPath, "cert-chain.pem")}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    		}
    	}
    }
    
    // SetDefaults_JoinConfiguration assigns default values to a regular node
    func SetDefaults_JoinConfiguration(obj *JoinConfiguration) {
    	if obj.CACertPath == "" {
    		obj.CACertPath = DefaultCACertPath
    	}
    
    	SetDefaults_JoinControlPlane(obj.ControlPlane)
    	SetDefaults_Discovery(&obj.Discovery)
    	SetDefaults_NodeRegistration(&obj.NodeRegistration)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    		}
    	}
    }
    
    // SetDefaults_JoinConfiguration assigns default values to a regular node
    func SetDefaults_JoinConfiguration(obj *JoinConfiguration) {
    	if obj.CACertPath == "" {
    		obj.CACertPath = DefaultCACertPath
    	}
    
    	SetDefaults_JoinControlPlane(obj.ControlPlane)
    	SetDefaults_Discovery(&obj.Discovery)
    	SetDefaults_NodeRegistration(&obj.NodeRegistration)
    	if obj.Timeouts == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	s.dnsNames = getDNSNames(args, host)
    	if hasCustomCertArgsOrWellKnown, tlsCertPath, tlsKeyPath, caCertPath := hasCustomTLSCerts(args.ServerOptions.TLSOptions); hasCustomCertArgsOrWellKnown {
    		// Use the DNS certificate provided via args or in well known location.
    		err = s.initFileCertificateWatches(TLSOptions{
    			CaCertFile: caCertPath,
    			KeyFile:    tlsKeyPath,
    			CertFile:   tlsCertPath,
    		})
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/zz_generated.conversion.go

    	if err := Convert_v1beta3_NodeRegistrationOptions_To_kubeadm_NodeRegistrationOptions(&in.NodeRegistration, &out.NodeRegistration, s); err != nil {
    		return err
    	}
    	out.CACertPath = in.CACertPath
    	if err := Convert_v1beta3_Discovery_To_kubeadm_Discovery(&in.Discovery, &out.Discovery, s); err != nil {
    		return err
    	}
    	out.ControlPlane = (*kubeadm.JoinControlPlane)(unsafe.Pointer(in.ControlPlane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - mountPath: /etc/certs/
              name: istio-certs
              readOnly: true
            {{- end }}
            {{- if and (eq .Values.global.proxy.tracer "lightstep") .Values.global.tracer.lightstep.cacertPath }}
            - mountPath: {{ directory .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}
              name: lightstep-certs
              readOnly: true
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - mountPath: /etc/certs/
              name: istio-certs
              readOnly: true
            {{- end }}
            {{- if and (eq .Values.global.proxy.tracer "lightstep") .Values.global.tracer.lightstep.cacertPath }}
            - mountPath: {{ directory .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}
              name: lightstep-certs
              readOnly: true
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - mountPath: /etc/certs/
              name: istio-certs
              readOnly: true
            {{- end }}
            {{- if and (eq .Values.global.proxy.tracer "lightstep") .Values.global.tracer.lightstep.cacertPath }}
            - mountPath: {{ directory .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}
              name: lightstep-certs
              readOnly: true
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - mountPath: /etc/certs/
              name: istio-certs
              readOnly: true
            {{- end }}
            {{- if and (eq .Values.global.proxy.tracer "lightstep") .Values.global.tracer.lightstep.cacertPath }}
            - mountPath: {{ directory .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}
              name: lightstep-certs
              readOnly: true
            {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top