Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 220 for udpate (0.16 sec)

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    }
    
    // DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.
    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  2. manifests/charts/UPDATING-CHARTS.md

    ## Step 2. Update the istioctl/Operator values
    
    If you are modifying the `gateway` chart, you can stop here.
    All other charts, however, are exposed by `istioctl` and need to follow the steps below.
    
    The charts in the `manifests` directory are used in istioctl to generate an installation manifest.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 27 18:28:55 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/testdata/config_dump.json

                ],
                "validate_clusters": false
              },
              "last_updated": "2023-12-26T05:57:43.476Z"
            }
          ]
        },
        {
          "@type": "type.googleapis.com/envoy.admin.v3.SecretsConfigDump",
          "dynamic_active_secrets": [
            {
              "name": "default",
              "last_updated": "2023-05-15T01:32:52.262Z",
              "secret": {
    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)
  4. common-protos/k8s.io/api/events/v1/generated.proto

    }
    
    // EventSeries contain information on series of events, i.e. thing that was/is happening
    // continuously for some time. How often to update the EventSeries is up to the event reporters.
    // The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows
    // how this struct is updated on heartbeats and can guide customized reporter implementations.
    message EventSeries {
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/reader-clusterrole.yaml

        resources: ["configmaps"]
        verbs: ["create", "get", "list", "watch", "update"]
      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["mutatingwebhookconfigurations"]
        verbs: ["get", "list", "watch", "update", "patch"]
      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["validatingwebhookconfigurations"]
        verbs: ["get", "list", "watch", "update"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Jul 17 21:19:52 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  6. common/Makefile.common.mk

    mirror-licenses: mod-download-go
    	@rm -fr licenses
    	@license-lint --mirror
    
    TMP := $(shell mktemp -d -u)
    UPDATE_BRANCH ?= "master"
    
    BUILD_TOOLS_ORG ?= "istio"
    
    update-common:
    	@mkdir -p $(TMP)
    	@git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files
    	@cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Mar 02 20:07:36 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/tag.go

      # and validating resources cluster-wide
      istioctl tag set default --revision 1-8-1
    
      # Rollout namespace "test-ns" to update workloads to the "1-8-1" revision
      kubectl rollout restart deployments -n test-ns
    `,
    		SuggestFor: []string{"create"},
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) == 0 {
    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)
  8. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                        }
                      ]
                    }
                  }
                },
                "common_lb_config": {}
              },
              "last_updated": "2024-03-04T08:37:44.840Z"
            }
          ]
        },
        {
          "@type": "type.googleapis.com/envoy.admin.v3.ListenersConfigDump",
          "version_info": "2024-03-04T08:37:44Z/4",
          "dynamic_listeners": [
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // +optional
      optional string namespace = 6;
    
      // Operation is the operation being performed. This may be different than the operation
      // requested. e.g. a patch can result in either a CREATE or UPDATE Operation.
      optional string operation = 7;
    
      // UserInfo is information about the requesting user
      optional k8s.io.api.authentication.v1.UserInfo userInfo = 8;
    
      // Object is the object from the incoming request.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      optional string namespace = 1;
    
      // Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
      // +optional
      optional string verb = 2;
    
      // Group is the API Group of the Resource.  "*" means all.
      // +optional
      optional string group = 3;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 11.9K bytes
    - Viewed (0)
Back to top