Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for Citadel (0.21 sec)

  1. operator/pkg/compare/compare_test.go

    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
      labels:
        istio: citadel
    spec:
      replicas: 1
      selector:
        matchLabels:
          istio: citadel
      template:
        metadata:
          labels:
            istio: citadel
        spec:
          containers:
          - name: citadel
            image: docker.io/istio/citadel:1.1.8
    ---
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  2. operator/pkg/patch/patch_test.go

    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
    a:
      b:
      - name: n1
        value: v2
      - list:
        - v1
        - v2
        - v3_regex
        name: n2
      c:
    `,
    		},
    		{
    			desc:  "ModifyListEntryValueQuoted",
    			path:  `a.b.[name:n1].value`,
    			value: `v2`,
    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
    a:
      b:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  3. pkg/istio-agent/plugins.go

    // limitations under the License.
    
    package istioagent
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	citadel "istio.io/istio/security/pkg/nodeagent/caclient/providers/citadel"
    )
    
    // WARNING WARNING WARNING
    // These interfaces must be stable to allow vendors plug custom CAs.
    
    type RootCertProvider interface {
    	GetKeyCertsForCA() (string, string)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. operator/pkg/object/objects_test.go

    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
      labels:
        istio: citadel
    spec:
      replicas: 1
      selector:
        matchLabels:
          istio: citadel
      template:
        metadata:
          labels:
            istio: citadel
        spec:
          containers:
          - name: citadel
            image: docker.io/istio/citadel:1.1.8
            args:
            - "--append-dns-names=true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. security/tools/generate_cert/main.go

    	}
    	key, err := util.ParsePemEncodedKey(secret.Data[ca.CAPrivateKeyFile])
    	if err != nil {
    		log.Fatalf("Unrecognized key format from citadel %v", err)
    	}
    	cert, err := util.ParsePemEncodedCertificate(secret.Data[ca.CACertFile])
    	if err != nil {
    		log.Fatalf("Unrecognized cert format from citadel %v", err)
    	}
    	return cert, key
    }
    
    func main() {
    	checkCmdLine()
    
    	var signerCert *x509.Certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 28 16:21:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	"istio.io/istio/security/pkg/nodeagent/caclient"
    )
    
    const (
    	bearerTokenPrefix = "Bearer "
    )
    
    var citadelClientLog = log.RegisterScope("citadelclient", "citadel client debugging")
    
    type CitadelClient struct {
    	// It means enable tls connection to Citadel if this is not nil.
    	tlsOpts  *TLSOptions
    	client   pb.IstioCertificateServiceClient
    	conn     *grpc.ClientConn
    	provider credentials.PerRPCCredentials
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. security/pkg/server/ca/monitoring.go

    )
    
    const (
    	errorlabel = "error"
    )
    
    var (
    	errorTag = monitoring.CreateLabel(errorlabel)
    
    	csrCounts = monitoring.NewSum(
    		"citadel_server_csr_count",
    		"The number of CSRs received by Citadel server.",
    	)
    
    	authnErrorCounts = monitoring.NewSum(
    		"citadel_server_authentication_failure_count",
    		"The number of authentication failures.",
    	)
    
    	csrParsingErrorCounts = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. samples/certs/README.md

    # Istio plugin CA sample certificates
    
    This directory contains sample pre-generated certificate and keys to demonstrate how an operator could configure Citadel with an existing root certificate, signing certificates and keys. In such
    a deployment, Citadel acts as an intermediate certificate authority (CA), under the given root CA.
    Instructions are available [here](https://istio.io/docs/tasks/security/cert-management/plugin-ca-cert/).
    
    The included sample files are:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/cache/monitoring.go

    	RequestType  = monitoring.CreateLabel("request_type")
    	ResourceName = monitoring.CreateLabel("resource_name")
    )
    
    // Metrics for outgoing requests from citadel agent to external services such as token exchange server or a CA.
    // This is different from incoming request metrics (i.e. from Envoy to citadel agent).
    var (
    	outgoingLatency = monitoring.NewSum(
    		"outgoing_latency",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. security/pkg/pki/util/keycertbundle_test.go

    	t0 := time.Now()
    	cert, key, err := GenCertKeyFromOptions(CertOptions{
    		Host:         "citadel.testing.istio.io",
    		NotBefore:    t0,
    		TTL:          time.Minute,
    		Org:          "MyOrg",
    		IsCA:         true,
    		IsSelfSigned: true,
    		IsServer:     true,
    		RSAKeySize:   2048,
    	})
    	if err != nil {
    		t.Errorf("failed to gen cert for Citadel self signed cert %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top