Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for Perret (0.17 sec)

  1. istioctl/pkg/writer/compare/sds/util.go

    		secret, err := parseDynamicSecret(warmingSecret, "WARMING")
    		if err != nil {
    			return nil, fmt.Errorf("failed building warming secret %s: %v",
    				warmingSecret.Name, err)
    		}
    		proxySecretItems = append(proxySecretItems, secret)
    	}
    	for _, activeSecret := range secretConfigDump.DynamicActiveSecrets {
    		secret, err := parseDynamicSecret(activeSecret, "ACTIVE")
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jun 06 15:14:48 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/testdata/config_dump.json

          "dynamic_active_secrets": [
            {
              "name": "default",
              "last_updated": "2023-05-15T01:32:52.262Z",
              "secret": {
                "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.Secret",
                "name": "default",
                "tls_certificate": {
                  "certificate_chain": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        type: string
                                      credentialName:
                                        description: The name of the secret that holds
                                          the TLS certs for the client including the CA
                                          certificates.
                                        type: string
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        configMap:
          name: istio-ca-root-cert
      {{- end }}
      {{- if .Values.global.mountMtlsCerts }}
      # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
      - name: istio-certs
        secret:
          optional: true
          {{ if eq .Spec.ServiceAccountName "" }}
          secretName: istio.default
          {{ else -}}
          secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
          {{  end -}}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                            },
                            "alpn_protocols": [
                              "h2"
                            ],
                            "tls_certificate_sds_secret_configs": [
                              {
                                "name": "default",
                                "sds_config": {
                                  "api_config_source": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

        #     gateways:
        #     - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
        #       port: 443
        #
        meshNetworks: {}
    
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/configdump.go

    	}
    	for _, secret := range secretDump.DynamicActiveSecrets {
    		// check the ROOTCA from secret dump
    		if secret.Name == "ROOTCA" {
    			var returnStr string
    			var returnErr error
    			strCA, err := c.configDump.GetRootCAFromSecretConfigDump(secret.GetSecret())
    			if err != nil {
    				returnStr = ""
    				returnErr = fmt.Errorf("can not dump ROOTCA from secret: %v", err)
    			} else {
    				returnStr = strCA
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 20:46:41 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  8. manifests/charts/base/templates/reader-serviceaccount.yaml

    # This service account aggregates reader permissions for the revisions in a given cluster
    # Should be used for remote secret creation.
    apiVersion: v1
    kind: ServiceAccount
      {{- if .Values.global.imagePullSecrets }}
    imagePullSecrets:
      {{- range .Values.global.imagePullSecrets }}
      - name: {{ . }}
        {{- end }}
        {{- end }}
    metadata:
      name: istio-reader-service-account
      namespace: {{ .Values.global.istioNamespace }}
      labels:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon May 31 07:10:20 GMT 2021
    - 489 bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig.go

    	secretConfigCmd := &cobra.Command{
    		Use:   "secret [<type>/]<name>[.<namespace>]",
    		Short: "Retrieves secret configuration for the Envoy in the specified pod",
    		Long:  `Retrieve information about secret configuration for the Envoy instance in the specified pod.`,
    		Example: `  # Retrieve full secret configuration for a given pod from Envoy.
      istioctl proxy-config secret <pod-name[.namespace]>
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/configdump_test.go

    		name               string
    		wantOutputSecret   string
    		wantOutputWorkload string
    		configNamespace    string
    		callPrime          bool
    		wantErr            bool
    	}{
    		{
    			name:             "returns expected secret summary onto Stdout",
    			callPrime:        true,
    			wantOutputSecret: "testdata/secretsummary.txt",
    		},
    		{
    			name:    "errors if config dump is not primed",
    			wantErr: true,
    		},
    		{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 02 18:21:48 GMT 2024
    - 3.6K bytes
    - Viewed (0)
Back to top