Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for Decref (0.11 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    			log.Infof("IstioGenerated %s secret found, use it as the CA certificate", ca.CACertsSecret)
    
    			// TODO(jaellio): Currently, when the USE_CACERTS_FOR_SELF_SIGNED_CA flag is true istiod
    			// handles loading and updating the "cacerts" secret with the "istio-generated" key the
    			// same way it handles the "istio-ca-secret" secret. Isitod utilizes a secret watch instead
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. samples/addons/kiali.yaml

          volumes:
          - name: kiali-configuration
            configMap:
              name: kiali
          - name: kiali-cert
            secret:
              secretName: istio.kiali-service-account
              optional: true
          - name: kiali-secret
            secret:
              secretName: kiali
              optional: true
          - name: kiali-cabundle
            configMap:
              name: kiali-cabundle
              optional: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pkg/security/security.go

    }
    
    // SecretManager defines secrets management interface which is used by SDS.
    type SecretManager interface {
    	// GenerateSecret generates new secret for the given resource.
    	//
    	// The current implementation also watched the generated secret and trigger a callback when it is
    	// near expiry. It will constructs the SAN based on the token's 'sub' claim, expected to be in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. cmd/sts-handlers.go

    	}
    	return nil
    }
    
    // getTokenSigningKey returns secret key used to sign JWT session tokens
    func getTokenSigningKey() (string, error) {
    	secret := globalActiveCred.SecretKey
    	if globalSiteReplicationSys.isEnabled() {
    		c, err := globalSiteReplicatorCred.Get(GlobalContext)
    		if err != nil {
    			return "", err
    		}
    		return c.SecretKey, nil
    	}
    	return secret, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		if err != nil {
    			klog.InfoS("Unable to retrieve pull secret, the image pull may not succeed.", "pod", klog.KObj(pod), "secret", klog.KObj(secret), "err", err)
    			failedPullSecrets = append(failedPullSecrets, secretRef.Name)
    			continue
    		}
    
    		pullSecrets = append(pullSecrets, *secret)
    	}
    
    	if len(failedPullSecrets) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	if !nilOrEqual((*string)(ref.Group), gvk.Secret.Group) || !nilOrEqual((*string)(ref.Kind), gvk.Secret.Kind) {
    		return "", &ConfigError{Reason: InvalidTLS, Message: fmt.Sprintf("invalid certificate reference %v, only secret is allowed", objectReferenceString(ref))}
    	}
    
    	secret := model.ConfigKey{
    		Kind:      kind.Secret,
    		Name:      string(ref.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/certcontroller.go

    	}
    
    	// check if signing key file exists the cert dir and if the istio-generated file
    	// exists (only if USE_CACERTS_FOR_SELF_SIGNED_CA is enabled)
    	if !detectedSigningCABundle {
    		log.Infof("Use roots from istio-ca-secret")
    
    		caBundle = s.CA.GetCAKeyCertBundle().GetRootCertPem()
    		s.addStartFunc("istiod server certificate rotation", func(stop <-chan struct{}) error {
    			go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/productpage.py

    requests_log.setLevel(logging.INFO)
    requests_log.propagate = True
    app.logger.addHandler(logging.StreamHandler(sys.stdout))
    app.logger.setLevel(logging.INFO)
    
    # Set the secret key to some random bytes. Keep this really secret!
    app.secret_key = b'_5#y2L"F4Q8z\n\xec]/'
    
    servicesDomain = "" if (os.environ.get("SERVICES_DOMAIN") is None) else "." + os.environ.get("SERVICES_DOMAIN")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/options.go

    	FileDir string
    
    	Registries []string
    
    	// Kubernetes controller options
    	KubeOptions kubecontroller.Options
    	// ClusterRegistriesNamespace specifies where the multi-cluster secret resides
    	ClusterRegistriesNamespace string
    	KubeConfig                 string
    
    	// DistributionTracking control
    	DistributionCacheRetention time.Duration
    
    	// DistributionTracking control
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    	if err != nil {
    		secretKey, err := getTokenSigningKey()
    		if err != nil {
    			return nil, err
    		}
    		// Session tokens for STS creds will be generated with root secret or site-replicator-0 secret
    		jwtClaims, err = auth.ExtractClaims(u.Credentials.SessionToken, secretKey)
    		if err != nil {
    			return nil, err
    		}
    	}
    	return jwtClaims, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top