Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,493 for addOne (0.15 sec)

  1. cluster/gce/manifests/kube-addon-manager.yaml

        # - test/kubemark/resources/manifests/kube-addon-manager.yaml
        image: registry.k8s.io/addon-manager/kube-addon-manager:v9.1.7
        command:
        - /bin/bash
        - -c
        - exec /opt/kube-addons-main.sh 1>>/var/log/kube-addon-manager.log 2>&1
        resources:
          requests:
            cpu: 5m
            memory: 50Mi
        volumeMounts:
        - mountPath: /etc/kubernetes/
          name: addons
          readOnly: true
        - mountPath: /var/log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/addons.go

    	return workflow.Phase{
    		Name:  "addon",
    		Short: "Install required addons for passing conformance tests",
    		Long:  cmdutil.MacroCommandLongDescription,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    				Short:          "Install all the addons",
    				InheritFlags:   getAddonPhaseFlags("all"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Adding.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target(ElementType.METHOD)
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 926 bytes
    - Viewed (0)
  4. releasenotes/notes/remove-addons-mixer-istioctl.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 23868
      - 23583
    releaseNotes:
      - |
        **Removed** the installation of telemetry addons (Prometheus, Grafana, Zipkin, Jaeger, Kiali) from installation by `istioctl`. See [Reworking our Addon Integrations](/blog/2020/addon-rework/) for more info.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 408 bytes
    - Viewed (0)
  5. cluster/addons/addon-manager/kube-addons-test.sh

    KUBECTL_BIN="${KUBECTL_BIN:-kubectl}"
    
    # Disabling shellcheck following files as the full path would be required.
    # shellcheck disable=SC1091
    source "kube-addons.sh"
    
    TEST_NS="kube-addon-manager-test"
    
    function retry() {
      local tries=10
      while [ "${tries}" -gt 0 ]; do
        "$@" && return 0;
        (( tries-- ))
        sleep 1
      done
    }
    
    function setup(){
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  6. cluster/addons/addon-manager/README.md

    ### Addon-manager
    
    addon-manager manages two classes of addons with given template files in
    `$ADDON_PATH` (default `/etc/kubernetes/addons/`).
    - Addons with label `addonmanager.kubernetes.io/mode=Reconcile` will be periodically
    reconciled. Direct manipulation to these addons through apiserver is discouraged because
    addon-manager will bring them back to the original state. In particular:
    	- Addon will be re-created if it is deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. releasenotes/notes/addon-remove.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 22762
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 344 bytes
    - Viewed (0)
  8. cluster/addons/addon-manager/kube-addons-main.sh

    # Import required functions. The addon manager is installed to /opt in
    # production use (see the Dockerfile)
    # Disabling shellcheck following files as the full path would be required.
    if [ -f "kube-addons.sh" ]; then
      # shellcheck disable=SC1091
      source "kube-addons.sh"
    elif [ -f "/opt/kube-addons.sh" ]; then
      # shellcheck disable=SC1091
      source "/opt/kube-addons.sh"
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 18:35:44 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. cluster/addons/addon-manager/Makefile

    test:
    	cp ./* $(TEMP_DIR)
    	curl -sSL --retry 5 https://dl.k8s.io/release/$(KUBECTL_VERSION)/bin/linux/$(ARCH)/kubectl > $(TEMP_DIR)/kubectl
    	chmod a+rx $(TEMP_DIR)/kube-addons.sh $(TEMP_DIR)/kube-addons-test.sh $(TEMP_DIR)/kubectl
    	cd $(TEMP_DIR) && KUBECTL_BIN=$(TEMP_DIR)/kubectl ./kube-addons-test.sh
    
    clean:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. cluster/addons/README.md

    More details could be found in [addon-manager/README.md](addon-manager/README.md).
    
    ## Cooperating Horizontal / Vertical Auto-Scaling with "reconcile class addons"
    
    "Reconcile" class addons will be periodically reconciled to the original state given
    by the initial config. In order to make Horizontal / Vertical Auto-scaling functional,
    the related fields in config should be left unset. More specifically, leave `replicas`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top