Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 257 for istiod1 (0.12 sec)

  1. pkg/kube/client.go

    	istiofake "istio.io/client-go/pkg/clientset/versioned/fake"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/kube/informerfactory"
    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/lazy"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/sleep"
    	"istio.io/istio/pkg/test/util/yml"
    	"istio.io/istio/pkg/version"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca.go

    	corev1 "k8s.io/client-go/kubernetes/typed/core/v1"
    
    	"istio.io/istio/pkg/backoff"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/cmd"
    	caerror "istio.io/istio/security/pkg/pki/error"
    	"istio.io/istio/security/pkg/pki/util"
    	certutil "istio.io/istio/security/pkg/util"
    )
    
    const (
    	// istioCASecretType is the Istio secret annotation type.
    	istioCASecretType = "istio.io/ca-root"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          ],
          "protocol": "TCP",
          "uid": "Kubernetes//Pod/istio-system/istiod-test-6bdfb786d-s58pj",
          "name": "istiod-test-6bdfb786d-s58pj",
          "namespace": "istio-system",
          "trustDomain": "cluster.local",
          "serviceAccount": "istiod-test",
          "workloadName": "istiod-test",
          "workloadType": "deployment",
          "canonicalName": "istiod",
          "canonicalRevision": "latest",
          "network": "network2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/certcontroller.go

    	"crypto/x509"
    	"fmt"
    	"os"
    	"path"
    	"strings"
    	"time"
    
    	"istio.io/istio/pilot/pkg/features"
    	tb "istio.io/istio/pilot/pkg/trustbundle"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/sleep"
    	"istio.io/istio/security/pkg/k8s/chiron"
    	"istio.io/istio/security/pkg/pki/ca"
    	certutil "istio.io/istio/security/pkg/util"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.287996Z	info	PilotSAN []string{"istiod.istio-system.svc"}
    2020-06-29T23:37:27.288004Z	info	MixerSAN []string{"spiffe://cluster.local/ns/istio-system/sa/istio-mixer-service-account"}
    2020-06-29T23:37:27.335686Z	info	serverOptions.CAEndpoint == istiod.istio-system.svc:15012
    2020-06-29T23:37:27.335723Z	info	Using user-configured CA istiod.istio-system.svc:15012
    2020-06-29T23:37:27.335729Z	info	istiod uses self-issued certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              - name: istio-envoy
                mountPath: /etc/istio/proxy
              - name: config-volume
                mountPath: /etc/istio/config
    {{- if eq .Values.global.pilotCertProvider "istiod" }}
              - mountPath: /var/run/secrets/istio
                name: istiod-ca-cert
    {{- end }}
              - name: istio-token
                mountPath: /var/run/secrets/tokens
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

        # Currently, two providers are supported: "kubernetes" and "istiod".
        # As some platforms may not have kubernetes signing APIs,
        # Istiod is the default
        pilotCertProvider: istiod
        sds:
          # The JWT token for SDS and the aud field of such JWT. See RFC 7519, section 4.1.3.
          # When a CSR is sent from Istio Agent to the CA (e.g. Istiod), this aud is to make sure the
          # JWT is intended for the CA.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/config.go

    //  limitations under the License.
    
    package istio
    
    import (
    	"fmt"
    	"os"
    	"path"
    	"path/filepath"
    	"strings"
    
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pilot/pkg/features/experimental.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package features
    
    import (
    	"time"
    
    	"go.uber.org/atomic"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define experimental features here.
    var (
    	// FilterGatewayClusterConfig controls if a subset of clusters(only those required) should be pushed to gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server_test.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/keycertbundle"
    	"istio.io/istio/pilot/pkg/server"
    	kubecontroller "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/filewatcher"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top