Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Tags (0.15 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

    Andrew LeCody <******@****.***> 1689185567 -0500
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jul 12 18:12:47 GMT 2023
    - 4.4K bytes
    - Viewed (1)
  2. Makefile.core.mk

    	GOOS=$(GOOS_LOCAL) GOARCH=$(GOARCH_LOCAL) LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $(TARGET_OUT)/ -tags=$(AGENT_TAGS) $(AGENT_BINARIES)
    
    # The build-linux target is responsible for building binaries used within containers.
    # This target should be expanded upon as we add more Linux architectures: i.e. build-arm64.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  3. istioctl/pkg/tag/tag.go

    	cmd := &cobra.Command{
    		Use:   "tag",
    		Short: "Command group used to interact with revision tags",
    		Long: `Command group used to interact with revision tags. Revision tags allow for the creation of mutable aliases
    referring to control plane revisions for sidecar injection.
    
    With revision tags, rather than relabeling a namespace from "istio.io/rev=revision-a" to "istio.io/rev=revision-b" to
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  4. common/config/.golangci-format.yml

    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    run:
      # Timeout for analysis, e.g. 30s, 5m.
      # Default: 1m
      timeout: 20m
      build-tags:
      - integ
      - integfuzz
    linters:
      disable-all: true
      enable:
      - goimports
      - gofumpt
      - gci
      fast: false
    linters-settings:
      gci:
        sections:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 05 03:02:37 GMT 2024
    - 2K bytes
    - Viewed (0)
  5. common/scripts/report_build_info.sh

    fi
    
    # Check for local changes
    tree_status="Clean"
    if [[ -z "${IGNORE_DIRTY_TREE}" ]] && ! git diff-index --quiet HEAD --; then
      tree_status="Modified"
    fi
    
    GIT_DESCRIBE_TAG=$(git describe --tags --always)
    HUB=${HUB:-"docker.io/istio"}
    
    # used by common/scripts/gobuild.sh
    echo "istio.io/istio/pkg/version.buildVersion=${VERSION:-$BUILD_GIT_REVISION}"
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue May 23 17:08:31 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  6. istioctl/pkg/authz/testdata/configdump.yaml

                 },
                 "random_sampling": {
                  "value": 1
                 },
                 "overall_sampling": {
                  "value": 100
                 },
                 "custom_tags": [
                  {
                   "tag": "istio.authorization.dry_run.allow_policy.name",
                   "metadata": {
                    "kind": {
                     "request": {}
                    },
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  7. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                "value": 100
                              },
                              "overall_sampling": {
                                "value": 100
                              },
                              "custom_tags": [
                                {
                                  "tag": "istio.authorization.dry_run.allow_policy.name",
                                  "metadata": {
                                    "kind": {
    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)
  8. operator/cmd/mesh/install.go

    	}
    	icps, err := kubeClient.GetIstioVersions(context.TODO(), ns)
    	if err != nil {
    		return err
    	}
    	if len(*icps) != 0 {
    		var icpTags []string
    		var icpTag string
    		// create normalized tags for multiple control plane revisions
    		for _, icp := range *icps {
    			if icp.Revision != revision {
    				continue
    			}
    			tagVer, err := GetTagVersion(icp.Info.GitTag)
    			if err != nil {
    				return err
    			}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  9. common/config/.golangci.yml

    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    run:
      # Timeout for analysis, e.g. 30s, 5m.
      # Default: 1m
      timeout: 20m
      build-tags:
        - integ
        - integfuzz
    linters:
      disable-all: true
      enable:
        - errcheck
        - exportloopref
        - depguard
        - gocritic
        - gofumpt
        - goimports
        - revive
        - gosimple
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  10. istioctl/pkg/tag/generate.go

    )
    
    const (
    	IstioTagLabel       = "istio.io/tag"
    	DefaultRevisionName = "default"
    
    	defaultChart            = "default"
    	pilotDiscoveryChart     = "istio-control/istio-discovery"
    	revisionTagTemplateName = "revision-tags.yaml"
    	vwhTemplateName         = "validatingwebhook.yaml"
    
    	istioInjectionWebhookSuffix = "sidecar-injector.istio.io"
    
    	vwhBaseTemplateName = "istiod-default-validator"
    
    	operatorNamespace = "operator.istio.io"
    )
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 13.2K bytes
    - Viewed (0)
Back to top