Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for start_addon (0.15 sec)

  1. cluster/addons/addon-manager/kube-addons-main.sh

    # are defined in a namespace other than default, we should still create the limits for the
    # default namespace.
    while IFS=$'\n' read -r obj; do
      start_addon "${obj}" 100 10 default &
      log INFO "++ obj ${obj} is created ++"
    done < <(find /etc/kubernetes/admission-controls \( -name \*.yaml -o -name \*.json \))
    
    # Start the apply loop.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 18:35:44 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. cluster/addons/addon-manager/CHANGELOG.md

    ### Version 9.1.3 (Mon November 30 2020 Spencer Peterson <******@****.***>)
     - Update kubectl to v1.19.3.
    
    ### Version 9.1.2 (Thu August 6 2020 Spencer Peterson <******@****.***>)
     - Fix `start_addon` overwriting resources with `addonmanager.kubernetes.io/mode=EnsureExists`.
    
    ### Version 9.1.1 (Wed May 19 2020 Antoni Zawodny <******@****.***>)
     - Fix kube-addons.sh and kubectl permissions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/kube-addons.sh

    # $1 filename of addon to start.
    # $2 count of tries to start the addon.
    # $3 delay in seconds between two consecutive tries
    # $4 namespace
    function start_addon() {
      local -r addon_filename=$1;
      local -r tries=$2;
      local -r delay=$3;
      local -r namespace=$4
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top