Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 865 for Operator (0.41 sec)

  1. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "EgressGateways"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/autoscale.yaml

      namespace: {{ .Release.Namespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
    spec:
      maxReplicas: {{ .Values.pilot.autoscaleMax }}
      minReplicas: {{ .Values.pilot.autoscaleMin }}
      scaleTargetRef:
        apiVersion: apps/v1
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Feb 12 19:43:09 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  4. manifests/charts/default/templates/validatingwebhook.yaml

        app: istiod
        istio: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        istio.io/tag: "default"
        # Required to make sure this resource is removed
        # when purging Istio resources
        operator.istio.io/component: Pilot
    webhooks:
      - name: validation.istio.io
        clientConfig:
          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
          {{- else }}
          service:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate.go

    	"path/filepath"
    	"strings"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/helmreconciler"
    	"istio.io/istio/operator/pkg/manifest"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/object"
    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/kube"
    )
    
    type ManifestGenerateArgs struct {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  6. operator/cmd/mesh/profile-dump.go

    package mesh
    
    import (
    	"encoding/json"
    	"fmt"
    	"sort"
    	"strings"
    
    	"github.com/spf13/cobra"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/manifest"
    	"istio.io/istio/operator/pkg/tpath"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/operator/pkg/util/clog"
    )
    
    type profileDumpArgs struct {
    	// inFilenames is an array of paths to the input IstioOperator CR files.
    	inFilenames []string
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/profile-diff.go

    // limitations under the License.
    
    package mesh
    
    import (
    	"fmt"
    	"io"
    	"os"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/operator/pkg/manifest"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/operator/pkg/util/clog"
    )
    
    type profileDiffArgs struct {
    	// manifestsPath is a path to a charts and profiles directory in the local filesystem with a release tgz.
    	manifestsPath string
    }
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/rolebindings.yaml

      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: {{ $gateway.name }}-sds
    subjects:
    - kind: ServiceAccount
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 632 bytes
    - Viewed (0)
  9. istioctl/pkg/validate/validate.go

    	"k8s.io/apimachinery/pkg/runtime"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	operatoristio "istio.io/istio/operator/pkg/apis/istio"
    	istioV1Alpha1 "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/util"
    	operatorvalidate "istio.io/istio/operator/pkg/validate"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/protocol"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Jan 22 17:58:52 GMT 2024
    - 15K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/templates/autoscale.yaml

      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "EgressGateways"
    spec:
      maxReplicas: {{ $gateway.autoscaleMax }}
      minReplicas: {{ $gateway.autoscaleMin }}
      scaleTargetRef:
        apiVersion: apps/v1
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 949 bytes
    - Viewed (0)
Back to top