From ec1fd10af90f66c159f1632066f1c99daa9a2b95 Mon Sep 17 00:00:00 2001 From: camrossi Date: Tue, 29 Nov 2022 12:05:43 +1100 Subject: [PATCH] 1.0 Release (#237) --- .github/workflows/create_installer.yaml | 12 +- .github/workflows/pipeline.yaml | 477 +- .gitignore | 11 + README.md | 31 +- ansible/add_nodes.yaml | 67 + ansible/cluster.yaml | 5 +- .../group_vars/containers_versions.yaml | 22 +- ansible/inventory/group_vars/sandbox.yaml | 9 +- ansible/manifests_novms.yaml | 56 + ansible/remove_k8s_nodes.yaml | 4 + ansible/reset_k8s.yaml | 3 +- ansible/roles/aci/tasks/main.yaml | 38 + ansible/roles/calico/tasks/main.yaml | 38 +- .../calico/templates/BGPConfiguration.yaml | 10 +- .../templates/{BGPPeer.j2 => BGPPeer.yaml} | 0 ansible/roles/calico/templates/IPPool.yaml | 4 +- ansible/roles/calico/templates/Readme | 4 + .../calico/templates/calico-typha-v46.yaml | 14 +- .../roles/calico/templates/calico-typha.yaml | 14 +- ansible/roles/calico_config/files/.gitkeep | 0 ansible/roles/calico_config/tasks/main.yaml | 31 - ansible/roles/k8s_addons/tasks/main.yaml | 25 +- .../k8s_addons/templates/goldpinger.yaml | 2 +- .../templates/guestbook-all-in-one.yaml | 134 +- .../templates/k8s_dashboard_220.yaml | 4 +- .../k8s_addons/templates/metric_server.yaml | 2 +- .../k8s_addons/templates/neo4j-values.yaml | 2 +- .../roles/k8s_addons/templates/vkaci.yaml.j2 | 13 +- ansible/roles/k8s_nodes/tasks/main.yaml | 144 +- ansible/roles/k8s_nodes/templates/ntp.conf | 3 +- ansible/roles/k8s_nodes/templates/proxy.conf | 5 +- .../roles/k8s_nodes/templates/registries.conf | 2 +- ansible/roles/k8s_reset/tasks/main.yaml | 33 +- ansible/roles/kube-router/tasks/main.yaml | 61 + .../roles/kube-router/templates/BGPPeers.yaml | 13 + ansible/roles/kube-router/templates/Readme | 22 + .../templates/kuberouter-all-features.yaml | 205 + ansible/roles/master_replicas/tasks/main.yaml | 31 +- ansible/roles/primary_master/tasks/main.yaml | 99 +- .../primary_master/templates/kubeadm-v4.yaml | 25 + ansible/roles/remove_k8s_node/tasks/main.yaml | 7 + ansible/roles/sandbox/tasks/main.yaml | 25 +- ansible/roles/workers/tasks/main.yaml | 16 +- ansible/sandbox_cluster.yaml | 9 +- docs/terraformVars.md | 4 +- packer/generate_vm_export.sh | 2 +- requirements.txt | 42 +- startup.sh | 10 + terraform/.env | 0 terraform/TEMPLATES/K8s_Packages | 7510 ++++++++++------- terraform/TEMPLATES/_calico_hostnames.html | 9 + terraform/TEMPLATES/calico_nodes.html | 77 +- terraform/TEMPLATES/cluster.html | 123 +- terraform/TEMPLATES/cluster_ndfc.tfvar.j2 | 24 +- terraform/TEMPLATES/cluster_network.html | 101 +- terraform/TEMPLATES/create.html | 136 +- .../TEMPLATES/docs/_bm_requirements.html | 42 + .../TEMPLATES/docs/_vc_requirements.html | 3 +- terraform/TEMPLATES/docs/doc.html | 49 +- terraform/TEMPLATES/docs/ndfc.html | 47 +- terraform/TEMPLATES/docs/prereqaci.html | 44 +- terraform/TEMPLATES/existing_cluster.html | 44 +- terraform/TEMPLATES/fabric.html | 364 +- terraform/TEMPLATES/index.html | 30 +- terraform/TEMPLATES/intro.html | 25 +- terraform/TEMPLATES/l3out.html | 44 +- terraform/TEMPLATES/login.html | 87 +- terraform/TEMPLATES/login_ndfc.html | 62 +- terraform/TEMPLATES/vc_template_upload.html | 60 +- terraform/TEMPLATES/vcenter-login.html | 53 +- terraform/TEMPLATES/vcenter.html | 83 +- terraform/aci.tf | 8 +- terraform/appflask.py | 1026 ++- terraform/appflask_unit_test.py | 90 +- terraform/bgp.tf | 52 +- terraform/calico-1.tfvars | 206 - terraform/calico-2.tfvars | 1720 ---- terraform/calico-dev-cluster.tfvars | 104 - terraform/calico-dev-cluster_nov6.tfvars | 131 - terraform/cluster_novms.tfvars | 104 - terraform/cluster_sandbox.tfvars | 122 - terraform/cookie.txt | 5 + terraform/floating_svi.tf | 4 +- terraform/floating_svi_v6.tf | 4 +- terraform/generate_nodes.py | 1 - .../modules/k8s_node/group_var_template.tmpl | 13 +- ...e => group_var_template_novms.tmpl.ignore} | 11 +- terraform/modules/k8s_node/main.tf.ignore | 154 - terraform/modules/k8s_node/outputs.tf | 13 + .../modules/k8s_node/outputs_novms.tf.ignore | 27 + terraform/modules/k8s_node/variables.tf | 8 +- .../modules/k8s_node/variables_novm.tf.ignore | 97 - terraform/modules/k8s_node/vms.tf | 1 + terraform/modules/overlay/main.tf | 6 +- terraform/modules/overlay/route_map_k8s.tmpl | 2 +- terraform/modules/overlay/variables.tf | 10 +- terraform/ndfc/main.tf | 10 +- terraform/ndfc/variables.tf | 18 +- terraform/sandbox.tfvars | 469 - .../static/assets/cui-2.0.0/css/style.css | 26 + .../assets/cui-2.0.0/js/functionLibrary.js | 234 +- .../cui-2.0.0/js/webcomponentsLibrary.js | 261 + terraform/static/assets/js/fabric.js | 336 + .../static/assets/js/turbo.es2017-umd.js | 3888 +++++++++ .../done_FILL0_wght400_GRAD0_opsz48.svg | 1 + .../minimize_FILL0_wght400_GRAD0_opsz48.svg | 1 + .../pending_FILL0_wght400_GRAD0_opsz48.svg | 1 + terraform/variables.tf | 9 +- terraform/vc_utils.py | 21 +- testing/clean_stale_vms.sh | 14 + testing/group_vars/all.yaml | 14 + testing/group_vars/ndfc.yaml | 6 + testing/inventoy.ini | 2 + testing/old_pipeline.yaml | 588 ++ testing/reset_ndfc_ci_env.yaml | 43 + .../cam_selenium_ui_testing_dev_cluster_v4.py | 19 +- .../cam_selenium_ui_testing_no_cluster_v4.py | 26 +- .../selenium/selenium_ui_testing.py | 9 +- .../selenium_ui_testing_dev_cluster_rpi.py | 136 + ..._ui_testing_dev_cluster_rpi_kube-router.py | 140 + .../selenium_ui_testing_dev_cluster_v4.py | 84 +- .../selenium_ui_testing_dev_cluster_v46.py | 76 +- ...m_ui_testing_dev_cluster_v4_kube-router.py | 113 +- .../selenium_ui_testing_dev_cluster_v4_nat.py | 73 +- ...ium_ui_testing_dev_cluster_v4_nat_chris.py | 76 +- ..._testing_dev_cluster_v4_nat_kube-router.py | 172 + ...ting_dev_ndfc_no_cluster_v4-kube-router.py | 146 + ...enium_ui_testing_dev_ndfc_no_cluster_v4.py | 133 + .../selenium_ui_testing_dev_ndfc_v4.py | 268 + ...nium_ui_testing_dev_ndfc_v4_kube-router.py | 81 +- .../selenium_ui_testing_dev_no_cluster_v4.py | 99 + ...i_testing_dev_no_cluster_v4_kube-router.py | 113 + .../selenium/selenium_ui_testing_raj.py | 7 +- testing/selenium/selenium_utils.py | 13 + 134 files changed, 14378 insertions(+), 8074 deletions(-) create mode 100644 ansible/add_nodes.yaml create mode 100644 ansible/manifests_novms.yaml create mode 100644 ansible/remove_k8s_nodes.yaml rename ansible/roles/calico/templates/{BGPPeer.j2 => BGPPeer.yaml} (100%) create mode 100644 ansible/roles/calico/templates/Readme delete mode 100644 ansible/roles/calico_config/files/.gitkeep delete mode 100644 ansible/roles/calico_config/tasks/main.yaml create mode 100644 ansible/roles/kube-router/tasks/main.yaml create mode 100644 ansible/roles/kube-router/templates/BGPPeers.yaml create mode 100644 ansible/roles/kube-router/templates/Readme create mode 100644 ansible/roles/kube-router/templates/kuberouter-all-features.yaml create mode 100644 ansible/roles/primary_master/templates/kubeadm-v4.yaml create mode 100644 ansible/roles/remove_k8s_node/tasks/main.yaml create mode 100755 startup.sh delete mode 100644 terraform/.env create mode 100644 terraform/TEMPLATES/_calico_hostnames.html create mode 100644 terraform/TEMPLATES/docs/_bm_requirements.html delete mode 100644 terraform/calico-1.tfvars delete mode 100644 terraform/calico-2.tfvars delete mode 100644 terraform/calico-dev-cluster.tfvars delete mode 100644 terraform/calico-dev-cluster_nov6.tfvars delete mode 100644 terraform/cluster_novms.tfvars delete mode 100644 terraform/cluster_sandbox.tfvars create mode 100644 terraform/cookie.txt rename terraform/modules/k8s_node/{group_var_template_novm.tmpl.ignore => group_var_template_novms.tmpl.ignore} (76%) delete mode 100644 terraform/modules/k8s_node/main.tf.ignore create mode 100644 terraform/modules/k8s_node/outputs_novms.tf.ignore delete mode 100644 terraform/modules/k8s_node/variables_novm.tf.ignore delete mode 100644 terraform/sandbox.tfvars create mode 100644 terraform/static/assets/cui-2.0.0/js/webcomponentsLibrary.js create mode 100644 terraform/static/assets/js/fabric.js create mode 100644 terraform/static/assets/js/turbo.es2017-umd.js create mode 100644 terraform/static/images/done_FILL0_wght400_GRAD0_opsz48.svg create mode 100644 terraform/static/images/minimize_FILL0_wght400_GRAD0_opsz48.svg create mode 100644 terraform/static/images/pending_FILL0_wght400_GRAD0_opsz48.svg create mode 100644 testing/clean_stale_vms.sh create mode 100644 testing/group_vars/all.yaml create mode 100644 testing/group_vars/ndfc.yaml create mode 100644 testing/inventoy.ini create mode 100644 testing/old_pipeline.yaml create mode 100644 testing/reset_ndfc_ci_env.yaml rename {terraform => testing}/selenium/cam_selenium_ui_testing_dev_cluster_v4.py (93%) rename terraform/selenium/selenium_ui_testing_dev_no_cluster_v4.py => testing/selenium/cam_selenium_ui_testing_no_cluster_v4.py (88%) rename {terraform => testing}/selenium/selenium_ui_testing.py (96%) create mode 100644 testing/selenium/selenium_ui_testing_dev_cluster_rpi.py create mode 100644 testing/selenium/selenium_ui_testing_dev_cluster_rpi_kube-router.py rename {terraform => testing}/selenium/selenium_ui_testing_dev_cluster_v4.py (68%) rename {terraform => testing}/selenium/selenium_ui_testing_dev_cluster_v46.py (73%) rename terraform/selenium/selenium_ui_testing_dev_cluster_v4_small.py => testing/selenium/selenium_ui_testing_dev_cluster_v4_kube-router.py (64%) rename {terraform => testing}/selenium/selenium_ui_testing_dev_cluster_v4_nat.py (73%) rename {terraform => testing}/selenium/selenium_ui_testing_dev_cluster_v4_nat_chris.py (72%) create mode 100644 testing/selenium/selenium_ui_testing_dev_cluster_v4_nat_kube-router.py create mode 100644 testing/selenium/selenium_ui_testing_dev_ndfc_no_cluster_v4-kube-router.py create mode 100644 testing/selenium/selenium_ui_testing_dev_ndfc_no_cluster_v4.py create mode 100644 testing/selenium/selenium_ui_testing_dev_ndfc_v4.py rename terraform/selenium/selenium_ui_testing_dev_ndfc_v4.py => testing/selenium/selenium_ui_testing_dev_ndfc_v4_kube-router.py (76%) create mode 100644 testing/selenium/selenium_ui_testing_dev_no_cluster_v4.py create mode 100644 testing/selenium/selenium_ui_testing_dev_no_cluster_v4_kube-router.py rename {terraform => testing}/selenium/selenium_ui_testing_raj.py (97%) create mode 100644 testing/selenium/selenium_utils.py diff --git a/.github/workflows/create_installer.yaml b/.github/workflows/create_installer.yaml index 383b073f..0fb7eb24 100644 --- a/.github/workflows/create_installer.yaml +++ b/.github/workflows/create_installer.yaml @@ -46,7 +46,7 @@ jobs: - name: Export NKT K8s Node Template run: | - ovftool -o vi://$GOVC_URL/$DC/vm/$VM_FOLDER/$NKT_TEMPLATE $DESTINATION_PATH/nkt_template.ova + ovftool --noSSLVerify -o vi://$GOVC_URL/$DC/vm/$VM_FOLDER/$NKT_TEMPLATE $DESTINATION_PATH/nkt_template.ova - name: Set permission for NKT K8s Node Template run: | @@ -71,7 +71,7 @@ jobs: - name: Export Installer OVA run: | - ovftool -o vi://$GOVC_URL/$DC/vm/nkt_installer-${{github.ref_name}} $DESTINATION_PATH/nkt_installer-${{github.ref_name}}.ova + ovftool --noSSLVerify -o vi://$GOVC_URL/$DC/vm/nkt_installer-${{github.ref_name}} $DESTINATION_PATH/nkt_installer-${{github.ref_name}}.ova - name: Delete Installer VM if: always() @@ -82,11 +82,9 @@ jobs: run: | chmod 777 $DESTINATION_PATH/nkt_installer-${{github.ref_name}}.ova - - name: Upload to Sydney S3 + - name: Upload Installer to Sydney S3 run: | bash packer/aws_upload.sh $DESTINATION_PATH/nkt_installer-${{github.ref_name}}.ova nkt-sydney - - - name: Delete compressed images + - name: Upload Template to Sydney S3 run: | - rm $DESTINATION_PATH/nkt_installer-${{github.ref_name}}.ova* - + bash packer/aws_upload.sh $DESTINATION_PATH/nkt_template.ova nkt-sydney \ No newline at end of file diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 1c782396..a6cba8cf 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -1,7 +1,7 @@ # This is a basic workflow to help you get started with Actions -name: testing-pipeline - +name: new-testing-pipeline +concurrency: one_workflow # Controls when the workflow will run on: pull_request: @@ -9,29 +9,79 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: - # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow runs the python unit tests - python_unit_tests: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Install Python 3 - uses: actions/setup-python@v1 - with: - python-version: 3.10.4 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - name: Run tests with pytest - run: | - cd terraform - pytest + cleanup_stale_vms: + # This job clean up all the VMs called gitaction-nkt found on the vcenters. + # it uses a local script that is not in git as it contains sensitive credentials + runs-on: stld + defaults: + run: + working-directory: v4/testing + steps: + - uses: actions/checkout@v2 + with: + path: v4 + - name: Cleanup Stale VMs + run: | + sh clean_stale_vms.sh - # This workflow contains a single job called "build" - nkt-testing-v4: + cleanup_stale_ndfc_objects: + # This job clean up all the VMs called gitaction-nkt found on the vcenters. + # it uses a local script that is not in git as it contains sensitive credentials + runs-on: ndfc + continue-on-error: true + defaults: + run: + working-directory: ndfc/testing + steps: + - uses: actions/checkout@v2 + with: + path: ndfc + - name: Cleanup Stale NDFC objects + run: | + ansible-playbook -i inventoy.ini reset_ndfc_ci_env.yaml + nkt-no-cluster-calico: + # The type of runner that the job will run on + runs-on: stld + defaults: + run: + working-directory: no-cluster/terraform + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + path: no-cluster + - name: Install dependencies + run: | + pip3 install -r ../requirements.txt + - name: Start NKT + run: | + gunicorn -w 4 -k gevent -b 0.0.0.0:5001 appflask:app -D ; sleep 5 + - name: Run headless chrome to generate the config + run: | + python3 ../testing/selenium/selenium_ui_testing_dev_no_cluster_v4.py --headless && sleep 2 + - name: Terraform plan + run: | + curl -c cookie.txt -s http://10.67.185.120:5001/ -o /dev/null && curl -b cookie.txt -s http://10.67.185.120:5001/tf_plan + - name: Terraform apply + run: | + curl -b cookie.txt -s http://10.67.185.120:5001/tf_apply + - name: Download Manifest Files + run: | + curl -b cookie.txt -s --fail http://10.67.185.120:5001/static/manifests/manifests.zip + - name: Kill Terraform if workflow is cancelled manually + if: cancelled() + run: | + killall terraform + - name: Terraform destroy and delete APIC user + if: always() + run: | + curl -b cookie.txt -s http://10.67.185.120:5001/destroy + + nkt-calico-v4: + needs: [cleanup_stale_vms, nkt-no-cluster-calico] # The type of runner that the job will run on runs-on: stld defaults: @@ -52,16 +102,16 @@ jobs: cp /nfs-share/www/nkt/id_rsa ../ansible/roles/sandbox/files/id_rsa - name: Start NKT run: | - gunicorn -w 4 -k gevent -b 0.0.0.0:5003 appflask:app -D ; sleep 5 + gunicorn -w 4 -k gevent -b 0.0.0.0:5001 appflask:app -D ; sleep 5 - name: Run headless chrome to generate the config run: | - python3 selenium/selenium_ui_testing_dev_cluster_v4.py --headless + python3 ../testing/selenium/selenium_ui_testing_dev_cluster_v4.py --headless && sleep 2 - name: Terraform plan run: | - curl -c cookie.txt -s http://10.67.185.120:5003/ -o /dev/null && curl -b cookie.txt -s http://10.67.185.120:5003/tf_plan + curl -c cookie.txt -s http://10.67.185.120:5001/ -o /dev/null && curl -b cookie.txt -s http://10.67.185.120:5001/tf_plan - name: Terraform apply run: | - curl -b cookie.txt -s http://10.67.185.120:5003/tf_apply + curl -b cookie.txt -s http://10.67.185.120:5001/tf_apply - name: Check if all the nodes are ready run: | kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready nodes --all --timeout=600s @@ -77,12 +127,12 @@ jobs: - name: Terraform destroy and delete APIC user if: always() run: | - curl -b cookie.txt -s http://10.67.185.120:5003/destroy - - - nkt-testing-v46: + curl -b cookie.txt -s http://10.67.185.120:5001/destroy + + nkt-calico-v46: # The type of runner that the job will run on runs-on: stld + needs: cleanup_stale_vms defaults: run: working-directory: v46/terraform @@ -104,7 +154,7 @@ jobs: gunicorn -w 4 -k gevent -b 0.0.0.0:5004 appflask:app -D ; sleep 5 - name: Run headless chrome to generate the config run: | - python3 selenium/selenium_ui_testing_dev_cluster_v46.py --headless + python3 ../testing/selenium/selenium_ui_testing_dev_cluster_v46.py --headless && sleep 2 - name: Terraform plan run: | curl -c cookie.txt -s http://10.67.185.120:5004/ -o /dev/null && curl -b cookie.txt -s http://10.67.185.120:5004/tf_plan @@ -128,10 +178,192 @@ jobs: run: | curl -b cookie.txt -s http://10.67.185.120:5004/destroy - # This workflow contains a single job called "build" - nkt-testing-v4-nat-dom: + nkt-no-cluster-kube-router: + # The type of runner that the job will run on + runs-on: stld + defaults: + run: + working-directory: kube-router-no-cluster/terraform + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + path: kube-router-no-cluster + - name: Install dependencies + run: | + pip3 install -r ../requirements.txt + - name: Start NKT + run: | + gunicorn -w 4 -k gevent -b 0.0.0.0:5002 appflask:app -D ; sleep 5 + - name: Run headless chrome to generate the config + run: | + python3 ../testing/selenium/selenium_ui_testing_dev_no_cluster_v4_kube-router.py --headless && sleep 2 + - name: Terraform plan + run: | + curl -c cookie.txt -s http://10.67.185.120:5002/ -o /dev/null && curl -b cookie.txt -s http://10.67.185.120:5002/tf_plan + - name: Terraform apply + run: | + curl -b cookie.txt -s http://10.67.185.120:5002/tf_apply + - name: Download Manifest Files + run: | + curl -b cookie.txt -s --fail http://10.67.185.120:5002/static/manifests/manifests.zip + - name: Kill Terraform if workflow is cancelled manually + if: cancelled() + run: | + killall terraform + + - name: Terraform destroy and delete APIC user + if: always() + run: | + curl -b cookie.txt -s http://10.67.185.120:5002/destroy + + nkt-kube-router: + needs: [cleanup_stale_vms, nkt-no-cluster-kube-router] + # The type of runner that the job will run on + runs-on: stld + defaults: + run: + working-directory: kube-router/terraform + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + path: kube-router + - name: Install dependencies + run: | + pip3 install -r ../requirements.txt + - name: Copy Private Key + run: | + cp /nfs-share/www/nkt/id_rsa ../ansible/roles/sandbox/files/id_rsa + - name: Start NKT + run: | + gunicorn -w 4 -k gevent -b 0.0.0.0:5002 appflask:app -D ; sleep 5 + - name: Run headless chrome to generate the config + run: | + python3 ../testing/selenium/selenium_ui_testing_dev_cluster_v4_kube-router.py --headless && sleep 2 + - name: Terraform plan + run: | + curl -c cookie.txt -s http://10.67.185.120:5002/ -o /dev/null && curl -b cookie.txt -s http://10.67.185.120:5002/tf_plan + - name: Terraform apply + run: | + curl -b cookie.txt -s http://10.67.185.120:5002/tf_apply + - name: Check if all the nodes are ready + run: | + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready nodes --all --timeout=600s + - name: Check if all the pods are ready + run: | + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready pods --all --all-namespaces --timeout=600s + + - name: Kill Terraform if workflow is cancelled manually + if: cancelled() + run: | + killall terraform + + - name: Terraform destroy and delete APIC user + if: always() + run: | + curl -b cookie.txt -s http://10.67.185.120:5002/destroy + + nkt-rpi-kube-router: + # The type of runner that the job will run on + runs-on: stld + defaults: + run: + working-directory: rpi-kube-router/terraform + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + path: rpi-kube-router + - name: Install dependencies + run: | + pip3 install -r ../requirements.txt + - name: Copy Private Key + run: | + cp /nfs-share/www/nkt/id_rsa ../ansible/roles/sandbox/files/id_rsa + - name: Start NKT + run: | + gunicorn -w 4 -k gevent -b 0.0.0.0:5003 appflask:app -D ; sleep 5 + - name: Run headless chrome to generate the config + run: | + python3 ../testing/selenium/selenium_ui_testing_dev_cluster_rpi_kube-router.py --headless && sleep 2 + - name: Terraform plan + run: | + curl -c cookie.txt -s http://10.67.185.120:5003/ -o /dev/null && curl -b cookie.txt -s http://10.67.185.120:5003/tf_plan + - name: Terraform apply + run: | + curl -b cookie.txt -s http://10.67.185.120:5003/tf_apply + - name: Check if all the nodes are ready + run: | + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready nodes --all --timeout=600s + - name: Check if all the pods are ready + run: | + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready pods --all --all-namespaces --timeout=600s + - name: Kill Terraform if workflow is cancelled manually + if: cancelled() + run: | + killall terraform + - name: Terraform destroy and delete APIC user + if: always() + run: | + curl -b cookie.txt -s http://10.67.185.120:5003/destroy + + nkt-rpi: + # The type of runner that the job will run on + runs-on: stld + needs: nkt-rpi-kube-router + defaults: + run: + working-directory: rpi/terraform + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + path: rpi + - name: Install dependencies + run: | + pip3 install -r ../requirements.txt + - name: Copy Private Key + run: | + cp /nfs-share/www/nkt/id_rsa ../ansible/roles/sandbox/files/id_rsa + - name: Start NKT + run: | + gunicorn -w 4 -k gevent -b 0.0.0.0:5003 appflask:app -D ; sleep 5 + - name: Run headless chrome to generate the config + run: | + python3 ../testing/selenium/selenium_ui_testing_dev_cluster_rpi.py --headless && sleep 2 + - name: Terraform plan + run: | + curl -c cookie.txt -s http://10.67.185.120:5003/ -o /dev/null && curl -b cookie.txt -s http://10.67.185.120:5003/tf_plan + - name: Terraform apply + run: | + curl -b cookie.txt -s http://10.67.185.120:5003/tf_apply + - name: Check if all the nodes are ready + run: | + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready nodes --all --timeout=600s + - name: Check if all the pods are ready + run: | + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready pods --all --all-namespaces --timeout=600s + + - name: Kill Terraform if workflow is cancelled manually + if: cancelled() + run: | + killall terraform + + - name: Terraform destroy and delete APIC user + if: always() + run: | + curl -b cookie.txt -s http://10.67.185.120:5003/destroy + nkt-calico-v4-nat: # The type of runner that the job will run on runs-on: bxl + needs: cleanup_stale_vms defaults: run: working-directory: v4-nat-dom/terraform @@ -153,7 +385,7 @@ jobs: gunicorn -w 4 -k gevent -b 0.0.0.0:5005 appflask:app -D ; sleep 5 - name: Run headless chrome to generate the config run: | - python3 selenium/selenium_ui_testing_dev_cluster_v4_nat.py --headless + python3 ../testing/selenium/selenium_ui_testing_dev_cluster_v4_nat.py --headless && sleep 2 - name: Terraform plan run: | curl -c cookie.txt -s http://localhost:5005/ -o /dev/null && curl -b cookie.txt -s http://localhost:5005/tf_plan @@ -180,20 +412,20 @@ jobs: run: | curl -b cookie.txt -s http://localhost:5005/destroy - # This workflow contains a single job called "build" - nkt-testing-v4-nat-chris: + nkt-kube-router-nat: # The type of runner that the job will run on runs-on: bxl + needs: [cleanup_stale_vms, nkt-calico-v4-nat] defaults: run: - working-directory: v4-nat-chris/terraform + working-directory: v4-nat-dom-kube-router/terraform # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 with: - path: v4-nat-chris + path: v4-nat-dom-kube-router - name: Install dependencies run: | pip3 install -r ../requirements.txt @@ -202,19 +434,19 @@ jobs: cp ~/nkt_private_key.key ../ansible/roles/sandbox/files/id_rsa - name: Start NKT run: | - gunicorn -w 4 -k gevent -b 0.0.0.0:5006 appflask:app -D ; sleep 5 + gunicorn -w 4 -k gevent -b 0.0.0.0:5002 appflask:app -D ; sleep 5 - name: Run headless chrome to generate the config run: | - python3 selenium/selenium_ui_testing_dev_cluster_v4_nat_chris.py --headless + python3 ../testing/selenium/selenium_ui_testing_dev_cluster_v4_nat_kube-router.py --headless && sleep 2 - name: Terraform plan run: | - curl -c cookie.txt -s http://localhost:5006/ -o /dev/null && curl -b cookie.txt -s http://localhost:5006/tf_plan + curl -c cookie.txt -s http://localhost:5002/ -o /dev/null && curl -b cookie.txt -s http://localhost:5002/tf_plan - name: Terraform apply run: | - curl -b cookie.txt -s http://localhost:5006/tf_apply + curl -b cookie.txt -s http://localhost:5002/tf_apply - name: Use primary master NAT IP for kubeconfig run: | - kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf config set-cluster kubernetes --server=https://10.48.168.104:6443 + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf config set-cluster kubernetes --server=https://10.48.170.130:6443 - name: Check if all the nodes are ready run: | kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf --insecure-skip-tls-verify=true wait --for=condition=Ready nodes --all --timeout=600s @@ -225,16 +457,17 @@ jobs: - name: Kill Terraform if workflow is cancelled manually if: cancelled() run: | - killall terraform + killall terraform - name: Terraform destroy and delete APIC user if: always() run: | - curl -b cookie.txt -s http://localhost:5006/destroy + curl -b cookie.txt -s http://localhost:5002/destroy - nkt-testing-ndfc-v4: + nkt-calico-ndfc: # The type of runner that the job will run on runs-on: ndfc + needs: [cleanup_stale_vms, cleanup_stale_ndfc_objects] defaults: run: working-directory: ndfc/terraform @@ -256,7 +489,7 @@ jobs: gunicorn -w 4 -k gevent -b 0.0.0.0:5010 appflask:app -D ; sleep 5 - name: Run headless chrome to generate the config run: | - python3 selenium/selenium_ui_testing_dev_ndfc_v4.py --url http://localhost:5010 --headless + python3 ../testing/selenium/selenium_ui_testing_dev_ndfc_v4.py --url http://localhost:5010 --headless && sleep 2 - name: Terraform plan run: | curl -c cookie.txt -s http://localhost:5010 -o /dev/null && curl -b cookie.txt -s http://localhost:5010/tf_plan?fabric_type=vxlan_evpn @@ -279,3 +512,153 @@ jobs: if: always() run: | curl -b cookie.txt -s http://localhost:5010/destroy?fabric_type=vxlan_evpn + + nkt-kube-router-ndfc: + # The type of runner that the job will run on + runs-on: ndfc + needs: [cleanup_stale_vms, nkt-calico-ndfc] + defaults: + run: + working-directory: ndfc-kube-router/terraform + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + path: ndfc-kube-router + - name: Install dependencies + run: | + pip3 install -r ../requirements.txt + - name: Copy Private Key + run: | + cp /home/shdu/id_rsa ../ansible/roles/sandbox/files/id_rsa + - name: Start NKT + run: | + gunicorn -w 4 -k gevent -b 0.0.0.0:5011 appflask:app -D ; sleep 5 + - name: Run headless chrome to generate the config + run: | + python3 ../testing/selenium/selenium_ui_testing_dev_ndfc_v4_kube-router.py --url http://localhost:5011 --headless && sleep 2 + - name: Terraform plan + run: | + curl -c cookie.txt -s http://localhost:5011 -o /dev/null && curl -b cookie.txt -s http://localhost:5011/tf_plan?fabric_type=vxlan_evpn + - name: Terraform apply + run: | + curl -b cookie.txt -s http://localhost:5011/tf_apply?fabric_type=vxlan_evpn + - name: Check if all the nodes are ready + run: | + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready nodes --all --timeout=600s + - name: Check if all the pods are ready + run: | + kubectl --kubeconfig=../ansible/roles/primary_master/files/admin.conf wait --for=condition=Ready pods --all --all-namespaces --timeout=600s + + - name: Terraform destroy and delete APIC user + if: cancelled() + run: | + killall terraform + + - name: Terraform destroy + if: always() + run: | + curl -b cookie.txt -s http://localhost:5011/destroy?fabric_type=vxlan_evpn + + nkt-no-cluster-calico-ndfc: + # The type of runner that the job will run on + runs-on: ndfc + needs: [nkt-kube-router-ndfc] + defaults: + run: + working-directory: ndfc-no-cluster/terraform + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + path: ndfc-no-cluster + - name: Install dependencies + run: | + pip3 install -r ../requirements.txt + - name: Start NKT + run: | + gunicorn -w 4 -k gevent -b 0.0.0.0:5012 appflask:app -D ; sleep 5 + - name: Run headless chrome to generate the config + run: | + python3 ../testing/selenium/selenium_ui_testing_dev_ndfc_no_cluster_v4.py --headless && sleep 2 + - name: Terraform plan + run: | + curl -c cookie.txt -s http://localhost:5012 -o /dev/null && curl -b cookie.txt -s http://localhost:5012/tf_plan?fabric_type=vxlan_evpn + - name: Terraform apply + run: | + curl -b cookie.txt -s http://localhost:5012/tf_apply?fabric_type=vxlan_evpn + - name: Download Manifest Files + run: | + curl -b cookie.txt -s --fail http://localhost:5012/static/manifests/manifests.zip + - name: Kill Terraform if workflow is cancelled manually + if: cancelled() + run: | + killall terraform + + - name: Terraform destroy and delete APIC user + if: always() + run: | + curl -b cookie.txt -s http://localhost:5012/destroy?fabric_type=vxlan_evpn + + nkt-no-cluster-kube-router-ndfc: + # The type of runner that the job will run on + runs-on: stld + needs: nkt-no-cluster-calico-ndfc + defaults: + run: + working-directory: ndfc-no-cluster-kube-router/terraform + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + path: ndfc-no-cluster-kube-router + - name: Install dependencies + run: | + pip3 install -r ../requirements.txt + - name: Start NKT + run: | + gunicorn -w 4 -k gevent -b 0.0.0.0:5013 appflask:app -D ; sleep 5 + - name: Run headless chrome to generate the config + run: | + python3 ../testing/selenium/selenium_ui_testing_dev_ndfc_no_cluster_v4-kube-router.py --headless && sleep 2 + - name: Terraform plan + run: | + curl -c cookie.txt -s http://localhost:5013 -o /dev/null && curl -b cookie.txt -s http://localhost:5013/tf_plan?fabric_type=vxlan_evpn + - name: Terraform apply + run: | + curl -b cookie.txt -s http://localhost:5013/tf_apply?fabric_type=vxlan_evpn + - name: Download Manifest Files + run: | + curl -b cookie.txt -s --fail http://localhost:5013/static/manifests/manifests.zip + - name: Kill Terraform if workflow is cancelled manually + if: cancelled() + run: | + killall terraform + + - name: Terraform destroy and delete APIC user + if: always() + run: | + curl -b cookie.txt -s http://localhost:5013/destroy?fabric_type=vxlan_evpn + + python_unit_tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install Python 3 + uses: actions/setup-python@v1 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run tests with pytest + run: | + cd terraform + pytest \ No newline at end of file diff --git a/.gitignore b/.gitignore index 954d193b..d89d994a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ *.swp .DS_Store terraform/cluster.tfvars +terraform/ndfc/cluster.tfvars *.crt *.key *.csr @@ -15,3 +16,13 @@ __pycache__ labs *.ova *.backup +terraform/static/manifests/* +ansible/inventory/group_vars/all.yml +ansible/roles/primary_master/files/* +terraform/ndfc/cluster.tfvars +terraform/.terraform.tfstate.lock.info +terraform/.env +ansible/inventory/nodes.ini +terraform/selenium/cam_* +testing/virtual_centers.inv +terraform/tmp.py diff --git a/README.md b/README.md index 9d3c9325..dfc2ef0e 100644 --- a/README.md +++ b/README.md @@ -49,8 +49,15 @@ A few add-ons are also installed on the cluster: ## UI -All the configurations can be done via the integrated webui. -Move to the `terraform` directory and start the application with `gunicorn -w 4 -k gevent -b 0.0.0.0:8080 appflask:app` +All the configurations can be done via the integrated webui. +A VM with NKT and the K8s VMs tempalte is provided for convenience and can be downloaded from the Release page, just import it in vCenter and you are ready to go! + +If you prefer to run NKT on your server execture the `startup.sh ` script to start the webui on the selected port. The Ubuntu VM template needs to be manually downloaded and placed into the `terraform/static/vm_templates` folder. + +The latest template can be downloaded from the following locations: +* https://nkt-sydney.s3.ap-southeast-2.amazonaws.com/nkt_template.ova +* https://nkt-paris.s3.eu-west-3.amazonaws.com/nkt_template.ova +* https://nkt-us-west.s3.us-west-1.amazonaws.com/nkt_template.ova ### Visibility @@ -60,6 +67,20 @@ A visualization tool `vkaci` is also deployed on the cluster. It is exposed as a * L3OUT ECMP is used to load balance traffic to the services running in the cluster: Every node that has a POD for an exposed service will advertise a /32 host route for the service IP. Currently ACI does not support Resilient hashing for L3out ECMP. This means that if the number of ECMP paths are changed (scaling up/down a deploument could result in that as well as node failure) the flows can potentially be re-hashed to a different nodes resulting in connections resets. There is currently a feature request opened to support Resilient hashing for L3out ECMP: US9273 -## Support - -Software contained in this repo is subject to the MIT license and is not supported by Cisco Systems or any of its subsidiaries in any shape or form. +## Advacned + +### Raspberry Pi testing +We have been testing NKT and VKACI on 3 Raspberry Pis nodes with Ubuntu 20.4. If you plan to test the same here a few tips: + +* Configure passwordless sudo + * Edit sudoers file: sudo nano /etc/sudoers + * Find a line which contains includedir /etc/sudoers.d + * Below that line add: username ALL=(ALL) NOPASSWD: ALL +* CRI-O supports ARM64 Ubuntu starting from v1.24 +* edit the `/boot/firmware/cmdline.txt` and enable the following options + * cgroup_enable=cpuset + * cgroup_enable=memory + * cgroup_memory=1 +* Check the maximum MTU supported by the Rpi ethernet interfaces, not all support jumbo MTU. use ` ip -d link list` and look for `maxmtu` +* The APT Mirror MUST BE http://ports.ubuntu.com/ +* The Pi does not have a RTC (Real Time Clock) so every time is reloaded the time is set back to the build time, at least with Ubuntu 20.0.4. So it is mandatory to have NTP working even after the installation or the cluster will die after a reload as all the certificate will be invalid. diff --git a/ansible/add_nodes.yaml b/ansible/add_nodes.yaml new file mode 100644 index 00000000..06392c9a --- /dev/null +++ b/ansible/add_nodes.yaml @@ -0,0 +1,67 @@ +- hosts: k8s_workers + gather_facts: false + roles: + - role: k8s_nodes + when: not sandbox_status + - role: workers + +- hosts: k8s_primary_master + gather_facts: False + tasks: + - name: Labels Nodes with Natted IP + shell: | + kubectl label node {{ item }} external-ip={{ hostvars[item].ansible_host }} --overwrite + loop: "{{groups['k8s_nodes']}}" + register: label_res + retries: 5 + until: label_res is success + any_errors_fatal: true + + - name: Labels Nodes with rack_id + shell: | + kubectl label node {{ item }} rack_id="{{ hostvars[item]['rack_id'] }}" --overwrite + loop: "{{groups['k8s_nodes']}}" + register: label_res + retries: 10 + until: label_res is success + any_errors_fatal: true + + - name: Labels Nodes with local-storage + shell: | + kubectl label node {{ item }} local-storage=yes --overwrite + loop: "{{groups['k8s_nodes']}}" + register: label_res + retries: 5 + until: label_res is success + any_errors_fatal: true + + - name: Copy kube-router manifests + template: + src: "roles/kube-router/templates/{{ item }}" + dest: /tmp/{{ item }} + force: yes + with_items: + - BGPPeers.yaml + when: cni_plugin == "Kube-Router" + + - name: Annotate Node with BGP Peers + shell: + while read -r line; do kubectl annotate node $line ; done < /tmp/BGPPeers.yaml + register: res + retries: 10 + until: res is success + any_errors_fatal: true + when: cni_plugin == "Kube-Router" + +- hosts: k8s_workers + gather_facts: false + tasks: + - name: Restart Kube-Rotuer on the new nodes + shell: + kubectl delete pod -n kube-system -l k8s-app=kube-router --field-selector spec.nodeName="{{ inventory_hostname }}" + register: res + delegate_to: "{{groups['k8s_primary_master'][0]}}" + retries: 10 + until: res is success + any_errors_fatal: true + when: cni_plugin == "Kube-Router" \ No newline at end of file diff --git a/ansible/cluster.yaml b/ansible/cluster.yaml index 9e63389c..13961bdb 100644 --- a/ansible/cluster.yaml +++ b/ansible/cluster.yaml @@ -21,7 +21,10 @@ - hosts: k8s_primary_master gather_facts: false roles: - - calico + - role: calico + when: cni_plugin == "Calico" + - role: kube-router + when: cni_plugin == "Kube-Router" - hosts: k8s_masters gather_facts: false diff --git a/ansible/inventory/group_vars/containers_versions.yaml b/ansible/inventory/group_vars/containers_versions.yaml index f7301e43..02c22167 100644 --- a/ansible/inventory/group_vars/containers_versions.yaml +++ b/ansible/inventory/group_vars/containers_versions.yaml @@ -1 +1,21 @@ -vkaci: 1.0rc1 \ No newline at end of file +images: + vkaci: quay.io/datacenter/vkaci:v1.0.1 + vkaci_init: quay.io/datacenter/vkaci-init:v1.0.1 + kube_router: docker.io/cloudnativelabs/kube-router:v1.5.2 + neo4j: neo4j:4.4.3 + goldpinger: docker.io/bloomberg/goldpinger:v3.5.1 + calico_cni: docker.io/calico/cni:v3.22.0 + calico_kube_controllers: docker.io/calico/kube-controllers:v3.22.0 + calico_node: docker.io/calico/node:v3.22.0 + calico_flexvol: docker.io/calico/pod2daemon-flexvol:v3.22.0 + calico_typha: docker.io/calico/typha:v3.22.0 + gb_frontend: gcr.io/google_samples/gb-frontend:v6 + gb_redisslave: gcr.io/google-samples/gb-redisslave:v3 + redis: docker.io/redis:3.2.12 + haproxy: haproxy:latest + metrics_server: k8s.gcr.io/metrics-server/metrics-server:v0.4.2 + keepalived: quay.io/datacenter/keepalived:v2.2.7 + k8s_dashboard: kubernetesui/dashboard:v2.2.0 + metrics_scraper: kubernetesui/metrics-scraper:v1.0.6 + nginx_certgen: k8s.gcr.io/ingress-nginx/kube-webhook-certgen:v1.1.1 + nginx_controller: k8s.gcr.io/ingress-nginx/controller:v1.1.1 \ No newline at end of file diff --git a/ansible/inventory/group_vars/sandbox.yaml b/ansible/inventory/group_vars/sandbox.yaml index 1e117a7e..057ade5b 100644 --- a/ansible/inventory/group_vars/sandbox.yaml +++ b/ansible/inventory/group_vars/sandbox.yaml @@ -4,18 +4,19 @@ ansible_user: cisco ansible_sudo_pass: 123Cisco123 ansible_ssh_private_key_file: "roles/sandbox/files/id_rsa" #K8S an Crio Version -kube_version: 1.23.4-00 # This is the versioning number as per Ubuntu Packages. (apt-cache show | grep Version) +kube_version: 1.24.7-00 # This is the versioning number as per Ubuntu Packages. (apt-cache show | grep Version) OS_Version: "xUbuntu_20.04" -crio_version: "1.23" +crio_version: "1.24" #HA-Proxy and Keepalied Config haproxy_image: haproxy:latest keepalived_image: osixia/keepalived:latest -ntp_server: "72.163.32.44" +ntp_servers: "72.163.32.44" time_zone: "Australia/Sydney" http_proxy_status: false dns_domain : cam.ciscolabs.com ubuntu_apt_mirror : https://ubuntu.mirror.digitalpacific.com.au/archive/ docker_mirror: "10.67.185.120:5000" -proxy_env: {} \ No newline at end of file +proxy_env: {} +bare_metal: false \ No newline at end of file diff --git a/ansible/manifests_novms.yaml b/ansible/manifests_novms.yaml new file mode 100644 index 00000000..a191c29a --- /dev/null +++ b/ansible/manifests_novms.yaml @@ -0,0 +1,56 @@ +--- +- name: Playbook + hosts: localhost + connection: local + gather_facts: False + tasks: + - name: Include containers_versions variables + include_vars: + file: inventory/group_vars/containers_versions.yaml + tags: + - cni_manifests + + - name: Delete CNI Manifests directory + file: + state: absent + path: "../terraform/static/manifests/" + + - name: Create CNI Manifests directory + file: + path: "../terraform/static/manifests/" + state: directory + + - name: Copy Calico Manifests + template: + src: "roles/calico/templates/{{ item }}" + dest: "../terraform/static/manifests/{{ item }}" + with_items: + - BGPPassSecret.yaml + - IPPool.yaml + - BGPConfiguration.yaml + - BGPPeer.yaml + - calico-typha.yaml + - calico-typha-v46.yaml + when: cni_plugin == "Calico" + tags: + - cni_manifests + + - name: Copy kube-router Manifests + template: + src: "roles/kube-router/templates/{{ item }}" + dest: "../terraform/static/manifests/{{ item }}" + lstrip_blocks: yes + with_items: + - kuberouter-all-features.yaml + - Readme + when: cni_plugin == "Kube-Router" + tags: + - cni_manifests + + - name: Archive Manifests + archive: + path: "../terraform/static/manifests/*" + dest: "../terraform/static/manifests/manifests.zip" + exclude_path: + - ../terraform/static/manifests/manifests.zip + format: zip \ No newline at end of file diff --git a/ansible/remove_k8s_nodes.yaml b/ansible/remove_k8s_nodes.yaml new file mode 100644 index 00000000..6795d2c9 --- /dev/null +++ b/ansible/remove_k8s_nodes.yaml @@ -0,0 +1,4 @@ +- hosts: k8s_workers + gather_facts: false + roles: + - remove_k8s_node \ No newline at end of file diff --git a/ansible/reset_k8s.yaml b/ansible/reset_k8s.yaml index f97c2b14..d1b23a23 100644 --- a/ansible/reset_k8s.yaml +++ b/ansible/reset_k8s.yaml @@ -1,5 +1,4 @@ - hosts: k8s_nodes gather_facts: false roles: - - k8s_reset - + - k8s_reset \ No newline at end of file diff --git a/ansible/roles/aci/tasks/main.yaml b/ansible/roles/aci/tasks/main.yaml index d2fb2f94..70280272 100644 --- a/ansible/roles/aci/tasks/main.yaml +++ b/ansible/roles/aci/tasks/main.yaml @@ -1,4 +1,42 @@ --- + +- name: Get APIC TIME + cisco.aci.aci_rest: + host: "{{ inventory_hostname }}" + username: "{{ admin_user }}" + password: "{{ admin_pass }}" + validate_certs: "{{ validate_certs }}" + method: get + path: /api/node/class/topSystem.json?query-target-filter=and(eq(topSystem.role,"controller")) + register: apic_topSys + tags: + - apic_user + +- name: Normalize Times + set_fact: + apic_time: "{{ (apic_topSys.imdata[0]['topSystem']['attributes']['currentTime'] | to_datetime('%Y-%m-%dT%H:%M:%S.%f%z')).timestamp() }}" + nkt_time: "{{ ( (now(utc=True).isoformat() ~ '+0000') | to_datetime('%Y-%m-%dT%H:%M:%S.%f%z')).timestamp() }}" + tags: + - apic_user + +- name: Calculate time diff + set_fact: + timediff: "{{ ((apic_time | int) - (nkt_time | int)) | abs }}" + tags: + - apic_user + +- name: APIC to NKT installer timediff + debug: + msg: "{{ timediff }} seconds" + tags: + - apic_user + +- name: Stop if timediff > 60s + fail: msg="!!!Please ensure the NKT and APIC clocks are in sync!!!" + when: timediff | int >= 60 + tags: + - apic_user + - name: Generate an OpenSSL private key. openssl_privatekey: path: "{{ './roles/aci/files/' + aci_temp_username + '-user.key' }}" diff --git a/ansible/roles/calico/tasks/main.yaml b/ansible/roles/calico/tasks/main.yaml index e96483cb..28ba6353 100644 --- a/ansible/roles/calico/tasks/main.yaml +++ b/ansible/roles/calico/tasks/main.yaml @@ -1,4 +1,9 @@ --- +- name: Include containers_versions variables + include_vars: + file: ../../inventory/group_vars/containers_versions.yaml + tags: + - calico - name: Copy Calico manifests template: @@ -8,7 +13,7 @@ with_items: - IPPool.yaml - BGPConfiguration.yaml - - BGPPeer.j2 + - BGPPeer.yaml - calico-typha.yaml - calico-typha-v46.yaml - kubernetes-services-endpoint.yaml @@ -24,16 +29,35 @@ tags: - calico -- name: Download Calicoctl on the installer VM if missing +- name: Download Calicoctl x86_64 on the installer VM if missing run_once: true become: false delegate_to: localhost get_url: url: https://github.com/projectcalico/calico/releases/download/v3.22.0/calicoctl-linux-amd64 dest: ./roles/calico/files/calicoctl - force: no + force: yes + environment: "{{ proxy_env }}" + ignore_errors: yes + when: + - not sandbox_status + - ansible_architecture == "x86_64" + tags: + - calico + +- name: Download Calicoctl arm64 on the installer VM if missing + run_once: true + become: false + delegate_to: localhost + get_url: + url: https://github.com/projectcalico/calico/releases/download/v3.22.0/calicoctl-linux-arm64 + dest: ./roles/calico/files/calicoctl + force: yes environment: "{{ proxy_env }}" - ignore_errors: yes + ignore_errors: yes + when: + - not sandbox_status + - ansible_architecture == "aarch64" tags: - calico @@ -41,13 +65,15 @@ copy: src: ./roles/calico/files/calicoctl dest: /bin/calicoctl - force: no + force: yes mode: '0755' environment: "{{ proxy_env }}" register: res retries: 10 until: res is success any_errors_fatal: true + when: + - not sandbox_status tags: - calico @@ -130,7 +156,7 @@ with_items: - IPPool.yaml - BGPConfiguration.yaml - - BGPPeer.j2 + - BGPPeer.yaml register: res retries: 100 until: res is success diff --git a/ansible/roles/calico/templates/BGPConfiguration.yaml b/ansible/roles/calico/templates/BGPConfiguration.yaml index a08dbfb1..9c9c0c19 100644 --- a/ansible/roles/calico/templates/BGPConfiguration.yaml +++ b/ansible/roles/calico/templates/BGPConfiguration.yaml @@ -3,17 +3,17 @@ kind: BGPConfiguration metadata: name: default spec: - asNumber: {{ calico_as }} + asNumber: {{ k8s_cluster_as }} logSeverityScreen: Info nodeToNodeMeshEnabled: false serviceClusterIPs: - - cidr: {{ cluster_svc_subnet | ipaddr('network') }}/{{ cluster_svc_subnet | ipaddr('prefix') }} + - cidr: {{ cluster_svc_subnet | ansible.utils.ipaddr('network') }}/{{ cluster_svc_subnet | ansible.utils.ipaddr('prefix') }} {% if cluster_svc_subnet_v6 %} - - cidr: {{ cluster_svc_subnet_v6 | ipaddr('network') }}/{{ cluster_svc_subnet_v6 | ipaddr('prefix') }} + - cidr: {{ cluster_svc_subnet_v6 | ansible.utils.ipaddr('network') }}/{{ cluster_svc_subnet_v6 | ansible.utils.ipaddr('prefix') }} {% endif %} serviceExternalIPs: - - cidr: {{ external_svc_subnet | ipaddr('network') }}/{{ external_svc_subnet | ipaddr('prefix') }} + - cidr: {{ external_svc_subnet | ansible.utils.ipaddr('network') }}/{{ external_svc_subnet | ansible.utils.ipaddr('prefix') }} {% if external_svc_subnet_v6 %} - - cidr: {{ external_svc_subnet_v6 | ipaddr('network') }}/{{ external_svc_subnet_v6 | ipaddr('prefix') }} + - cidr: {{ external_svc_subnet_v6 | ansible.utils.ipaddr('network') }}/{{ external_svc_subnet_v6 | ansible.utils.ipaddr('prefix') }} {% endif %} listenPort: 179 diff --git a/ansible/roles/calico/templates/BGPPeer.j2 b/ansible/roles/calico/templates/BGPPeer.yaml similarity index 100% rename from ansible/roles/calico/templates/BGPPeer.j2 rename to ansible/roles/calico/templates/BGPPeer.yaml diff --git a/ansible/roles/calico/templates/IPPool.yaml b/ansible/roles/calico/templates/IPPool.yaml index cfb5f63d..93cba4cc 100644 --- a/ansible/roles/calico/templates/IPPool.yaml +++ b/ansible/roles/calico/templates/IPPool.yaml @@ -3,7 +3,7 @@ kind: IPPool metadata: name: default-ipv4-ippool spec: - cidr: {{ pod_subnet | ansible.netcommon.ipaddr('subnet') }} + cidr: {{ pod_subnet | ansible.utils.ipaddr('subnet') }} ipipMode: Never natOutgoing: false vxlanMode: Never @@ -16,7 +16,7 @@ kind: IPPool metadata: name: default-ipv6-ippool spec: - cidr: {{ pod_subnet_v6 | ansible.netcommon.ipaddr('subnet') }} + cidr: {{ pod_subnet_v6 | ansible.utils.ipaddr('subnet') }} ipipMode: Never natOutgoing: false vxlanMode: Never diff --git a/ansible/roles/calico/templates/Readme b/ansible/roles/calico/templates/Readme new file mode 100644 index 00000000..4de4aa74 --- /dev/null +++ b/ansible/roles/calico/templates/Readme @@ -0,0 +1,4 @@ +To deploy Calico follow these steps: +1) annotate the K8s nodes with the following annotations: + rack_id="" This is the rack_id that you have allocated to your leaves. Nodes will peer with leaves with the same rack_id +2) Apply all the .yaml files with the kubectl apply -f command. \ No newline at end of file diff --git a/ansible/roles/calico/templates/calico-typha-v46.yaml b/ansible/roles/calico/templates/calico-typha-v46.yaml index 71754684..f0aabffc 100644 --- a/ansible/roles/calico/templates/calico-typha-v46.yaml +++ b/ansible/roles/calico/templates/calico-typha-v46.yaml @@ -4104,7 +4104,7 @@ spec: securityContext: fsGroup: 65534 containers: - - image: docker.io/calico/typha:v3.22.0 + - image: {{ images.calico_typha }} imagePullPolicy: IfNotPresent name: calico-typha ports: @@ -4221,7 +4221,7 @@ spec: # It can be deleted if this is a fresh installation, or if you have already # upgraded to use calico-ipam. - name: upgrade-ipam - image: docker.io/calico/cni:v3.22.0 + image: {{ images.calico_cni }} imagePullPolicy: IfNotPresent command: ["/opt/cni/bin/calico-ipam", "-upgrade"] envFrom: @@ -4249,7 +4249,7 @@ spec: # This container installs the CNI binaries # and CNI network config file on each node. - name: install-cni - image: docker.io/calico/cni:v3.22.0 + image: {{ images.calico_cni }} imagePullPolicy: IfNotPresent command: ["/opt/cni/bin/install"] envFrom: @@ -4291,7 +4291,7 @@ spec: # Adds a Flex Volume Driver that creates a per-pod Unix Domain Socket to allow Dikastes # to communicate with Felix over the Policy Sync API. - name: flexvol-driver - image: docker.io/calico/pod2daemon-flexvol:v3.22.0 + image: {{ images.calico_flexvol }} imagePullPolicy: IfNotPresent volumeMounts: - name: flexvol-driver-host @@ -4303,7 +4303,7 @@ spec: # container programs network policy and routes on each # host. - name: calico-node - image: docker.io/calico/node:v3.22.0 + image: {{ images.calico_node }} imagePullPolicy: IfNotPresent envFrom: - configMapRef: @@ -4527,11 +4527,13 @@ spec: operator: Exists - key: node-role.kubernetes.io/master effect: NoSchedule + - key: node-role.kubernetes.io/control-plane + effect: NoSchedule serviceAccountName: calico-kube-controllers priorityClassName: system-cluster-critical containers: - name: calico-kube-controllers - image: docker.io/calico/kube-controllers:v3.22.0 + image: {{ images.calico_kube_controllers }} imagePullPolicy: IfNotPresent env: # Choose which controllers to run. diff --git a/ansible/roles/calico/templates/calico-typha.yaml b/ansible/roles/calico/templates/calico-typha.yaml index 7ba9456d..640444b0 100644 --- a/ansible/roles/calico/templates/calico-typha.yaml +++ b/ansible/roles/calico/templates/calico-typha.yaml @@ -4102,7 +4102,7 @@ spec: securityContext: fsGroup: 65534 containers: - - image: docker.io/calico/typha:v3.22.0 + - image: {{ images.calico_typha }} imagePullPolicy: IfNotPresent name: calico-typha ports: @@ -4219,7 +4219,7 @@ spec: # It can be deleted if this is a fresh installation, or if you have already # upgraded to use calico-ipam. - name: upgrade-ipam - image: docker.io/calico/cni:v3.22.0 + image: {{ images.calico_cni }} imagePullPolicy: IfNotPresent command: ["/opt/cni/bin/calico-ipam", "-upgrade"] envFrom: @@ -4247,7 +4247,7 @@ spec: # This container installs the CNI binaries # and CNI network config file on each node. - name: install-cni - image: docker.io/calico/cni:v3.22.0 + image: {{ images.calico_cni }} imagePullPolicy: IfNotPresent command: ["/opt/cni/bin/install"] envFrom: @@ -4289,7 +4289,7 @@ spec: # Adds a Flex Volume Driver that creates a per-pod Unix Domain Socket to allow Dikastes # to communicate with Felix over the Policy Sync API. - name: flexvol-driver - image: docker.io/calico/pod2daemon-flexvol:v3.22.0 + image: {{ images.calico_flexvol }} imagePullPolicy: IfNotPresent volumeMounts: - name: flexvol-driver-host @@ -4301,7 +4301,7 @@ spec: # container programs network policy and routes on each # host. - name: calico-node - image: docker.io/calico/node:v3.22.0 + image: {{ images.calico_node }} imagePullPolicy: IfNotPresent envFrom: - configMapRef: @@ -4522,12 +4522,14 @@ spec: - key: CriticalAddonsOnly operator: Exists - key: node-role.kubernetes.io/master + effect: NoSchedule + - key: node-role.kubernetes.io/control-plane effect: NoSchedule serviceAccountName: calico-kube-controllers priorityClassName: system-cluster-critical containers: - name: calico-kube-controllers - image: docker.io/calico/kube-controllers:v3.22.0 + image: {{ images.calico_kube_controllers }} imagePullPolicy: IfNotPresent env: # Choose which controllers to run. diff --git a/ansible/roles/calico_config/files/.gitkeep b/ansible/roles/calico_config/files/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/ansible/roles/calico_config/tasks/main.yaml b/ansible/roles/calico_config/tasks/main.yaml deleted file mode 100644 index 2c44b375..00000000 --- a/ansible/roles/calico_config/tasks/main.yaml +++ /dev/null @@ -1,31 +0,0 @@ ---- -- name: Playbook - hosts: localhost - connection: local - tasks: - - name: create static calico directory if it does not exist - file: - path: "$HOME/akb/terraform/static/calico/" - state: directory - tags: - - calico_config - - name: Copy Calico Manifests - template: - src: "$HOME/akb/ansible/roles/calico/templates/{{ item }}" - dest: "$HOME/akb/terraform/static/calico/{{ item }}" - with_items: - - BGPPassSecret.yaml - - IPPool.yaml - - BGPConfiguration.yaml - - BGPPeer.j2 - - calico-typha.yaml - - calico-typha-v46.yaml - tags: - - calico_config - - name: Archive Calico Manifests - archive: - path: "$HOME/akb/ansible/roles/calico/*" - dest: "$HOME/akb/ansible/roles/calico/calico_manifests.zip" - format: zip - tags: - - calico_config \ No newline at end of file diff --git a/ansible/roles/k8s_addons/tasks/main.yaml b/ansible/roles/k8s_addons/tasks/main.yaml index 446c5fa3..0d8336cc 100644 --- a/ansible/roles/k8s_addons/tasks/main.yaml +++ b/ansible/roles/k8s_addons/tasks/main.yaml @@ -36,8 +36,11 @@ - k8s_addons - name: Enable Scheduling on Masters if less than 3 workers are detected - shell: kubectl taint nodes --all node-role.kubernetes.io/master- + shell: kubectl taint nodes --all "{{ item }}" when: "groups['k8s_workers'] | length < 3" + with_items: + - node-role.kubernetes.io/master- + - node-role.kubernetes.io/control-plane- ignore_errors: yes tags: - k8s_addons @@ -93,8 +96,7 @@ - name: Labels Nodes with local-storage shell: | - kubectl label node {{ item }} local-storage=yes --overwrite - loop: "{{groups['k8s_nodes']}}" + kubectl label node --all local-storage=yes --overwrite register: label_res retries: 5 until: label_res is success @@ -136,7 +138,7 @@ - k8s_addons - name: helm repo update - shell: helm repo update4 + shell: helm repo update register: label_res retries: 5 until: label_res is success @@ -144,9 +146,6 @@ - not sandbox_status - fabric_type is not defined or fabric_type == "aci" environment: "{{ proxy_env }}" - register: label_res - retries: 5 - until: label_res is success tags: - k8s_addons @@ -173,6 +172,12 @@ tags: - k8s_addons +- name: Force Schedule Neo4j on second master node + shell: kubectl patch statefulset my-neo4j -p '{"spec":{"template":{"spec":{"nodeName":"{{ groups['k8s_master_replicas'][0] }}"}}}}' + when: fabric_type is not defined or fabric_type == "aci" + tags: + - k8s_addons + - name: Expose Neo4j shell: kubectl patch svc my-neo4j-neo4j -p '{"spec":{"type":"NodePort","externalIPs":["{{ neo4j_ip }}"]}}' when: fabric_type is not defined or fabric_type == "aci" @@ -181,6 +186,9 @@ - name: Wait for Neo4j to be Scheduled shell: kubectl wait --for=condition=PodScheduled pod -l app=my-neo4j + register: label_res + retries: 5 + until: label_res is success when: fabric_type is not defined or fabric_type == "aci" tags: - k8s_addons @@ -199,7 +207,6 @@ tags: - k8s_addons - - name: Copy vkaci addons manifests template: src: vkaci.yaml.j2 @@ -207,7 +214,7 @@ force: yes when: fabric_type is not defined or fabric_type == "aci" tags: - - k8s_addons + - k8s_addons1 #### - name: Install vkaci diff --git a/ansible/roles/k8s_addons/templates/goldpinger.yaml b/ansible/roles/k8s_addons/templates/goldpinger.yaml index 3a595959..02e3c728 100644 --- a/ansible/roles/k8s_addons/templates/goldpinger.yaml +++ b/ansible/roles/k8s_addons/templates/goldpinger.yaml @@ -50,7 +50,7 @@ spec: valueFrom: fieldRef: fieldPath: status.podIP - image: "docker.io/bloomberg/goldpinger:v3.3.0" + image: {{ images.goldpinger }} imagePullPolicy: IfNotPresent securityContext: allowPrivilegeEscalation: false diff --git a/ansible/roles/k8s_addons/templates/guestbook-all-in-one.yaml b/ansible/roles/k8s_addons/templates/guestbook-all-in-one.yaml index 47b0dc40..9c53c919 100644 --- a/ansible/roles/k8s_addons/templates/guestbook-all-in-one.yaml +++ b/ansible/roles/k8s_addons/templates/guestbook-all-in-one.yaml @@ -1,126 +1,107 @@ -apiVersion: v1 -kind: Service +apiVersion: apps/v1 +kind: Deployment metadata: name: redis-master labels: app: redis + role: leader tier: backend - role: master -spec: - ports: - - port: 6379 - targetPort: 6379 - selector: - app: redis - tier: backend - role: master ---- -apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1 -kind: Deployment -metadata: - name: redis-master spec: + replicas: 1 selector: matchLabels: app: redis - role: master - tier: backend - replicas: 1 template: metadata: labels: app: redis - role: master + role: leader tier: backend spec: containers: - - name: master - image: k8s.gcr.io/redis:e2e # or just image: redis - imagePullPolicy: IfNotPresent + - name: leader + image: {{ images.redis }} + resources: + requests: + cpu: 100m + memory: 100Mi ports: - containerPort: 6379 --- apiVersion: v1 kind: Service metadata: - name: redis-slave + name: redis-master labels: app: redis + role: leader tier: backend - role: slave spec: ports: - port: 6379 + targetPort: 6379 selector: app: redis + role: leader tier: backend - role: slave --- -apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: redis-slave + labels: + app: redis + role: follower + tier: backend spec: + replicas: 2 selector: matchLabels: app: redis - role: slave - tier: backend - replicas: 2 template: metadata: labels: app: redis - role: slave + role: follower tier: backend spec: containers: - - name: slave - image: gcr.io/google_samples/gb-redisslave:v1 - imagePullPolicy: IfNotPresent - env: - - name: GET_HOSTS_FROM - value: dns - # If your cluster config does not include a dns service, then to - # instead access an environment variable to find the master - # service's host, comment out the 'value: dns' line above, and - # uncomment the line below: - # value: env + - name: follower + image: {{ images.gb_redisslave }} + resources: + requests: + cpu: 100m + memory: 100Mi ports: - containerPort: 6379 --- apiVersion: v1 kind: Service metadata: - name: frontend + name: redis-slave labels: - app: guestbook - tier: frontend + app: redis + role: follower + tier: backend spec: - # comment or delete the following line if you want to use a LoadBalancer - type: NodePort - # Load balanced across nodes with endpoints for the service. - #Avoids second hop for LoadBalancer and NodePort type services, traffic may be unevenly load balanced - externalTrafficPolicy: Local - # if your cluster supports it, uncomment the following to automatically create - # an external load-balanced IP for the frontend service. - # type: LoadBalancer ports: - - port: 80 + # the port that this service should serve on + - port: 6379 selector: - app: guestbook - tier: frontend + app: redis + role: follower + tier: backend --- -apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1 +apiVersion: apps/v1 kind: Deployment metadata: name: frontend spec: + replicas: 3 selector: matchLabels: - app: guestbook - tier: frontend - replicas: 3 + app: guestbook + tier: frontend template: metadata: labels: @@ -129,15 +110,32 @@ spec: spec: containers: - name: php-redis - image: gcr.io/google-samples/gb-frontend:v4 - imagePullPolicy: IfNotPresent + image: {{ images.gb_frontend }} env: - name: GET_HOSTS_FROM - value: dns - # If your cluster config does not include a dns service, then to - # instead access environment variables to find service host - # info, comment out the 'value: dns' line above, and uncomment the - # line below: - # value: env + value: "dns" + resources: + requests: + cpu: 100m + memory: 100Mi ports: - containerPort: 80 +--- +apiVersion: v1 +kind: Service +metadata: + name: frontend + labels: + app: guestbook + tier: frontend +spec: + # if your cluster supports it, uncomment the following to automatically create + # an external load-balanced IP for the frontend service. + # type: LoadBalancer + #type: LoadBalancer + ports: + # the port that this service should serve on + - port: 80 + selector: + app: guestbook + tier: frontend \ No newline at end of file diff --git a/ansible/roles/k8s_addons/templates/k8s_dashboard_220.yaml b/ansible/roles/k8s_addons/templates/k8s_dashboard_220.yaml index 5e3e0d47..3ca8fc93 100644 --- a/ansible/roles/k8s_addons/templates/k8s_dashboard_220.yaml +++ b/ansible/roles/k8s_addons/templates/k8s_dashboard_220.yaml @@ -187,7 +187,7 @@ spec: spec: containers: - name: kubernetes-dashboard - image: kubernetesui/dashboard:v2.2.0 + image: {{ images.k8s_dashboard }} imagePullPolicy: IfNotPresent ports: - containerPort: 8443 @@ -271,7 +271,7 @@ spec: spec: containers: - name: dashboard-metrics-scraper - image: kubernetesui/metrics-scraper:v1.0.6 + image: {{ images.metrics_scraper }} imagePullPolicy: IfNotPresent ports: - containerPort: 8000 diff --git a/ansible/roles/k8s_addons/templates/metric_server.yaml b/ansible/roles/k8s_addons/templates/metric_server.yaml index fad67777..bd0a0444 100644 --- a/ansible/roles/k8s_addons/templates/metric_server.yaml +++ b/ansible/roles/k8s_addons/templates/metric_server.yaml @@ -134,7 +134,7 @@ spec: - --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname - --kubelet-use-node-status-port - --kubelet-insecure-tls - image: k8s.gcr.io/metrics-server/metrics-server:v0.4.2 + image: {{ images.metrics_server }} imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 3 diff --git a/ansible/roles/k8s_addons/templates/neo4j-values.yaml b/ansible/roles/k8s_addons/templates/neo4j-values.yaml index 606f924d..32dbf384 100644 --- a/ansible/roles/k8s_addons/templates/neo4j-values.yaml +++ b/ansible/roles/k8s_addons/templates/neo4j-values.yaml @@ -11,4 +11,4 @@ volumes: claimName: neo4j-pvc config: dbms.default_database: neo4j - dbms.config.strict_validation: 'true' + dbms.config.strict_validation: 'true' \ No newline at end of file diff --git a/ansible/roles/k8s_addons/templates/vkaci.yaml.j2 b/ansible/roles/k8s_addons/templates/vkaci.yaml.j2 index 28af7839..6e17c3a0 100644 --- a/ansible/roles/k8s_addons/templates/vkaci.yaml.j2 +++ b/ansible/roles/k8s_addons/templates/vkaci.yaml.j2 @@ -7,8 +7,11 @@ metadata: name: pods-list rules: - apiGroups: [""] - resources: ["pods"] - verbs: ["list"] + resources: ["pods","services","nodes"] + verbs: ["list","get"] +- apiGroups: ["crd.projectcalico.org"] + resources: ["bgpconfigurations"] + verbs: ["list","get"] --- kind: ClusterRoleBinding apiVersion: rbac.authorization.k8s.io/v1 @@ -53,11 +56,11 @@ spec: nodeName: "{{ groups['k8s_primary_master'][0] }}" containers: - name: vkaci - image: quay.io/camillo/vkaci:{{ vkaci }} + image: {{ images.vkaci }} imagePullPolicy: IfNotPresent ports: - containerPort: 50000 - command: ['sh', '-c', "gunicorn -w 1 --thread 12 -k gevent -b 0.0.0.0:8080 visibility_ui:app" ] + command: ['sh', '-c', "gunicorn -w 1 --thread 12 -k gevent --timeout 600 -b 0.0.0.0:8080 visibility_ui:app" ] env: - name: MODE value: "CLUSTER" @@ -86,7 +89,7 @@ spec: mountPath: "/root/.aci-meta" initContainers: - name: init-vkaci - image: quay.io/camillo/vkaci-init:{{ vkaci }} + image: {{ images.vkaci_init }} imagePullPolicy: IfNotPresent command: ['sh', '-c', "python3 init.py"] env: diff --git a/ansible/roles/k8s_nodes/tasks/main.yaml b/ansible/roles/k8s_nodes/tasks/main.yaml index d985b85b..7f6c3dc2 100644 --- a/ansible/roles/k8s_nodes/tasks/main.yaml +++ b/ansible/roles/k8s_nodes/tasks/main.yaml @@ -57,6 +57,7 @@ - name: Test https internet connectivity get https://www.google.com uri: url: https://www.google.com + validate_certs: no environment: "{{ proxy_env }}" register: res retries: 10 @@ -74,6 +75,58 @@ - k8s_nodes when: ubuntu_apt_mirror +- name: set timezone + shell: timedatectl set-timezone {{ time_zone }} + tags: + - k8s_nodes + when: time_zone + +- name: Install the NTP daemon + apt: name=ntp + register: apt_res + retries: 100 + until: apt_res is success + tags: + - k8s_nodes + +- name: Copy over the NTP configuration + template: src=./templates/ntp.conf dest=/etc/ntp.conf + tags: + - k8s_nodes + +- name: restart ntpd + service: name=ntp state=restarted + tags: + - k8s_nodes + +- name: apt update + apt: + update_cache: yes + cache_valid_time: 0 + register: apt_res + retries: 100 + until: apt_res is success + when: bare_metal + tags: + - k8s_nodes + +- name: Install ntpstat + apt: name=ntpstat + register: apt_res + retries: 100 + until: apt_res is success + when: bare_metal + tags: + - k8s_nodes + +- name: Wait for ntp sync + command: ntpstat + register: apt_res + retries: 1000 + until: apt_res.rc == 0 + when: bare_metal + tags: + - k8s_nodes - name: add apt-key for Kubeadm apt_key: @@ -112,7 +165,7 @@ - name: add apt-key for cri-o apt_key: - url: https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable:cri-o:/{{ crio_version }}/{{ OS_Version }}/Release.key + url: https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/{{ crio_version }}/{{ OS_Version }}/Release.key environment: "{{ proxy_env }}" register: res retries: 10 @@ -144,17 +197,12 @@ tags: - k8s_nodes -- name: set timezone - shell: timedatectl set-timezone {{ time_zone }} - tags: - - k8s_nodes - - name: apt update apt: update_cache: yes cache_valid_time: 0 register: apt_res - retries: 100 + retries: 10 until: apt_res is success tags: - k8s_nodes @@ -167,24 +215,6 @@ tags: - k8s_nodes -- name: Install the NTP daemon - apt: name=ntp - register: apt_res - retries: 100 - until: apt_res is success - tags: - - k8s_nodes - -- name: Copy over the NTP configuration - template: src=./templates/ntp.conf dest=/etc/ntp.conf - tags: - - k8s_nodes - -- name: restart ntpd - service: name=ntp state=restarted - tags: - - k8s_nodes - - name: Make sure ntp is started, and is enabled on restart. service: name=ntp state=started enabled=yes tags: @@ -277,6 +307,30 @@ tags: - k8s_nodes +- name: install lldpd + apt: + name: lldpd + state: latest + register: res + retries: 10 + until: res is success + any_errors_fatal: true + when: bare_metal + tags: + - k8s_nodes + +- name: Install kubeadm, kubelet and kubectl + apt: + name: kubelet={{ kube_version }},kubectl={{ kube_version }},kubeadm={{ kube_version }} + state: present + force: True + register: res + retries: 10 + until: res is success + any_errors_fatal: true + tags: + - k8s_nodes + - name: install cri-tools apt: name: cri-tools @@ -311,6 +365,25 @@ tags: - k8s_nodes +- name: Detect the pause image version + shell: kubeadm config images list --kubernetes-version "{{ kube_version.split("-")[0] }}" | grep pause + register: pause_image + tags: + - k8s_nodes + - k8s_nodes_pause + +- name: Ensure Crio uses the right pause container image + ansible.builtin.lineinfile: + path: /etc/crio/crio.conf + regex: '# pause_image = .*' + line: pause_image = "{{ pause_image.stdout }}" + owner: root + group: root + mode: '0644' + tags: + - k8s_nodes + - k8s_nodes_pause + - name: Just force systemd to reread configs (2.4 and above) ansible.builtin.systemd: daemon_reload: yes @@ -350,18 +423,6 @@ tags: - k8s_nodes -- name: Install kubeadm, kubelet and kubectl - apt: - name: kubelet={{ kube_version }},kubectl={{ kube_version }},kubeadm={{ kube_version }} - state: present - force: True - register: res - retries: 10 - until: res is success - any_errors_fatal: true - tags: - - k8s_nodes - - name: Create local-storage folder file: path: /mnt/local-storage @@ -391,3 +452,12 @@ timeout: 5000 tags: - k8s_nodes + +- name: Wait for ntp sync + command: ntpstat + register: apt_res + retries: 1000 + until: apt_res.rc == 0 + when: bare_metal + tags: + - k8s_nodes \ No newline at end of file diff --git a/ansible/roles/k8s_nodes/templates/ntp.conf b/ansible/roles/k8s_nodes/templates/ntp.conf index 72886f22..6b2b2eed 100644 --- a/ansible/roles/k8s_nodes/templates/ntp.conf +++ b/ansible/roles/k8s_nodes/templates/ntp.conf @@ -18,8 +18,9 @@ filegen clockstats file clockstats type day enable # Use servers from the NTP Pool Project. Approved by Ubuntu Technical Board # on 2011-02-08 (LP: #104525). See http://www.pool.ntp.org/join.html for # more information. +{% for ntp_server in ntp_servers %} pool {{ ntp_server }} - +{% endfor %} # Use Ubuntu's ntp server as a fallback. pool ntp.ubuntu.com diff --git a/ansible/roles/k8s_nodes/templates/proxy.conf b/ansible/roles/k8s_nodes/templates/proxy.conf index 5f8b807a..91920500 100644 --- a/ansible/roles/k8s_nodes/templates/proxy.conf +++ b/ansible/roles/k8s_nodes/templates/proxy.conf @@ -1,2 +1,5 @@ Acquire::http::Proxy "http://{{ http_proxy }}"; -Acquire::https::Proxy "http://{{ http_proxy }}"; \ No newline at end of file +Acquire::https::Proxy "http://{{ http_proxy }}"; +Acquire::BrokenProxy=true; +Acquire::http::Pipeline-Depth "0"; +Acquire::http::No-Cache=True; diff --git a/ansible/roles/k8s_nodes/templates/registries.conf b/ansible/roles/k8s_nodes/templates/registries.conf index 0601ed10..6ab0a925 100644 --- a/ansible/roles/k8s_nodes/templates/registries.conf +++ b/ansible/roles/k8s_nodes/templates/registries.conf @@ -1,5 +1,5 @@ unqualified-search-registries = ["docker.io", "quay.io"] -{% if docker_mirror is defined %} +{% if docker_mirror is not none %} [[registry]] prefix = "docker.io" insecure = false diff --git a/ansible/roles/k8s_reset/tasks/main.yaml b/ansible/roles/k8s_reset/tasks/main.yaml index 20779952..454f8113 100644 --- a/ansible/roles/k8s_reset/tasks/main.yaml +++ b/ansible/roles/k8s_reset/tasks/main.yaml @@ -1,7 +1,32 @@ - name: kubeadm reset -f command: kubeadm reset -f -- name: restart cri-o - service: - name: crio - state: restarted +- name: Delete CNI configs + file: + state: absent + path: /etc/cni/net.d/ + +- name: Create /etc/cni/net.d/ directory + file: + path: /etc/cni/net.d/ + state: directory + +- name: Reboot the server + shell: "sleep 5 && reboot" + async: 1 + poll: 0 + tags: + - reboot +- name: Pause for 1 minutes to ensure the hosts are off + pause: + minutes: 1 + tags: + - reboot +- name: Wait for the nodes to be reachable + wait_for_connection: + connect_timeout: 10 + sleep: 5 + delay: 5 + timeout: 5000 + tags: + - reboot \ No newline at end of file diff --git a/ansible/roles/kube-router/tasks/main.yaml b/ansible/roles/kube-router/tasks/main.yaml new file mode 100644 index 00000000..641427ea --- /dev/null +++ b/ansible/roles/kube-router/tasks/main.yaml @@ -0,0 +1,61 @@ +--- +- name: Include containers_versions variables + include_vars: + file: ../../inventory/group_vars/containers_versions.yaml + tags: + - kube-router + +- name: Copy kube-router manifests + template: + src: "{{ item }}" + dest: /tmp/{{ item }} + force: yes + with_items: + - kuberouter-all-features.yaml + - BGPPeers.yaml + tags: + - kube-router + +- name: Annotate Node with BGP Peers + shell: + while read -r line; do kubectl annotate node $line ; done < /tmp/BGPPeers.yaml + register: res + retries: 10 + until: res is success + any_errors_fatal: true + tags: + - kube-router + +- name: Apply kube-router + shell: kubectl apply -f /tmp/kuberouter-all-features.yaml + register: res + retries: 10 + until: res is success + any_errors_fatal: true + tags: + - kube-router + +- name: Wait for all kube-system pod to be ready + shell: kubectl wait --for=condition=Ready pods --all -n kube-system --timeout=600s + register: res + retries: 10 + until: res is success + any_errors_fatal: true + tags: + - kube-router + +- name: Remove kube-proxy + shell: kubectl -n kube-system delete ds kube-proxy + ignore_errors: yes + tags: + - kube-router + +# This is needed to remove the iptables rules left over by kube-proxy +- name: Clean up iptables + shell: iptables-save | grep -v KUBE | iptables-restore + ignore_errors: yes + delegate_to: "{{ item }}" + loop: "{{groups['k8s_nodes']}}" + register: clean_iptables + tags: + - kube-router \ No newline at end of file diff --git a/ansible/roles/kube-router/templates/BGPPeers.yaml b/ansible/roles/kube-router/templates/BGPPeers.yaml new file mode 100644 index 00000000..fdcdc3b1 --- /dev/null +++ b/ansible/roles/kube-router/templates/BGPPeers.yaml @@ -0,0 +1,13 @@ +{% for node in groups['k8s_nodes'] %} +{%- set peers = [] -%} +{%- for leaf in bgp_peers -%} +{%- if leaf.rack_id | int == hostvars[node]['rack_id'] | int -%} +{{ peers.append( leaf.primary_ip ) }} +{%- endif -%} +{%- endfor -%} +{{ node }} kube-router.io/peer.ips={{ peers|join(',') }} --overwrite +{{ node }} kube-router.io/peer.asns={{ aci_as }},{{ aci_as }} --overwrite +{% if bgp_pass %} +{{ node }} kube-router.io/peer.passwords={{ bgp_pass | b64encode}},{{ bgp_pass | b64encode}} --overwrite +{% endif %} +{% endfor %} \ No newline at end of file diff --git a/ansible/roles/kube-router/templates/Readme b/ansible/roles/kube-router/templates/Readme new file mode 100644 index 00000000..1623ea1d --- /dev/null +++ b/ansible/roles/kube-router/templates/Readme @@ -0,0 +1,22 @@ +To deploy Kube Routers follow these steps: +1) annotate the K8s nodes with the following annotations: +{% for leaf1 in bgp_peers %} + {% set peers = [] %} + {% for leaf2 in bgp_peers %} + {% if leaf1.primary_ip != leaf2.primary_ip %} + {% if leaf1.rack_id | int == leaf2.rack_id | int %} + {{- peers.append( leaf1.primary_ip ) -}} + {{- peers.append( leaf2.primary_ip ) -}} + {{- bgp_peers.remove( leaf2 ) -}} + {% endif %} + {% endif %} + {% endfor %} + For K8s nodes in rack {{ leaf1.rack_id }} add the following BGP peers as an annotation + kube-router.io/peer.ips={{ peers|join(',') }} +{% endfor %} + For all the nodes ad also the following annotations + kube-router.io/peer.asns={{ aci_as }},{{ aci_as }} + {% if bgp_pass %} + kube-router.io/peer.passwords={{ bgp_pass | b64encode}},{{ bgp_pass | b64encode}} + {% endif %} +2) Apply the kuberouter-all-features.yaml file with the kubectl apply -f command. \ No newline at end of file diff --git a/ansible/roles/kube-router/templates/kuberouter-all-features.yaml b/ansible/roles/kube-router/templates/kuberouter-all-features.yaml new file mode 100644 index 00000000..9df90307 --- /dev/null +++ b/ansible/roles/kube-router/templates/kuberouter-all-features.yaml @@ -0,0 +1,205 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: kube-router-cfg + namespace: kube-system + labels: + tier: node + k8s-app: kube-router +data: + cni-conf.json: | + { + "cniVersion":"0.3.0", + "name":"mynet", + "plugins":[ + { + "name":"kubernetes", + "type":"bridge", + "bridge":"kube-bridge", + "isDefaultGateway":true, + "ipam":{ + "type":"host-local" + } + } + ] + } +--- +apiVersion: apps/v1 +kind: DaemonSet +metadata: + labels: + k8s-app: kube-router + tier: node + name: kube-router + namespace: kube-system +spec: + selector: + matchLabels: + k8s-app: kube-router + tier: node + template: + metadata: + labels: + k8s-app: kube-router + tier: node + spec: + priorityClassName: system-node-critical + serviceAccountName: kube-router + serviceAccount: kube-router + containers: + - name: kube-router + image: {{ images.kube_router }} + imagePullPolicy: IfNotPresent + # bgp-graceful-restart-deferral-time: The default is 6min and will result in a delay for BGP route adcvertisment of 6minutes + # That seems excessive to setting this to 30s seemed sensible + # For the moment I do not advertise cluster-svc IP, if you want them add --advertise-cluster-ip + #All these parameters are documetned at: https://github.com/cloudnativelabs/kube-router/blob/master/docs/user-guide.md + args: + - --run-router=true + - --run-firewall=true + - --run-service-proxy=true + - --bgp-graceful-restart=true + - --bgp-holdtime=3s + - --kubeconfig=/var/lib/kube-router/kubeconfig + - --cluster-asn={{ k8s_cluster_as }} + - --advertise-external-ip + - --advertise-loadbalancer-ip + - --advertise-pod-cidr=true + - --enable-ibgp=false + - --enable-overlay=false + - --enable-pod-egress=false + - --override-nexthop=true + env: + - name: NODE_NAME + valueFrom: + fieldRef: + fieldPath: spec.nodeName + - name: KUBE_ROUTER_CNI_CONF_FILE + value: /etc/cni/net.d/10-kuberouter.conflist + livenessProbe: + httpGet: + path: /healthz + port: 20244 + initialDelaySeconds: 10 + periodSeconds: 3 + resources: + requests: + cpu: 250m + memory: 250Mi + securityContext: + privileged: true + volumeMounts: + - name: lib-modules + mountPath: /lib/modules + readOnly: true + - name: cni-conf-dir + mountPath: /etc/cni/net.d + - name: kubeconfig + mountPath: /var/lib/kube-router + readOnly: true + - name: xtables-lock + mountPath: /run/xtables.lock + readOnly: false + initContainers: + - name: install-cni + image: {{ images.kube_router }} + imagePullPolicy: IfNotPresent + command: + - /bin/sh + - -c + - set -e -x; + if [ ! -f /etc/cni/net.d/10-kuberouter.conflist ]; then + if [ -f /etc/cni/net.d/*.conf ]; then + rm -f /etc/cni/net.d/*.conf; + fi; + TMP=/etc/cni/net.d/.tmp-kuberouter-cfg; + cp /etc/kube-router/cni-conf.json ${TMP}; + mv ${TMP} /etc/cni/net.d/10-kuberouter.conflist; + fi + volumeMounts: + - name: cni-conf-dir + mountPath: /etc/cni/net.d + - name: kube-router-cfg + mountPath: /etc/kube-router + hostNetwork: true + tolerations: + - effect: NoSchedule + operator: Exists + - key: CriticalAddonsOnly + operator: Exists + - effect: NoExecute + operator: Exists + volumes: + - name: lib-modules + hostPath: + path: /lib/modules + - name: cni-conf-dir + hostPath: + path: /etc/cni/net.d + - name: kube-router-cfg + configMap: + name: kube-router-cfg + - name: kubeconfig + configMap: + name: kube-proxy + items: + - key: kubeconfig.conf + path: kubeconfig + - name: xtables-lock + hostPath: + path: /run/xtables.lock + type: FileOrCreate +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: kube-router + namespace: kube-system +--- +kind: ClusterRole +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: kube-router + namespace: kube-system +rules: + - apiGroups: + - "" + resources: + - namespaces + - pods + - services + - nodes + - endpoints + verbs: + - list + - get + - watch + - apiGroups: + - "networking.k8s.io" + resources: + - networkpolicies + verbs: + - list + - get + - watch + - apiGroups: + - extensions + resources: + - networkpolicies + verbs: + - get + - list + - watch +--- +kind: ClusterRoleBinding +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: kube-router +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: kube-router +subjects: +- kind: ServiceAccount + name: kube-router + namespace: kube-system \ No newline at end of file diff --git a/ansible/roles/master_replicas/tasks/main.yaml b/ansible/roles/master_replicas/tasks/main.yaml index 54f4fb53..ee360aad 100644 --- a/ansible/roles/master_replicas/tasks/main.yaml +++ b/ansible/roles/master_replicas/tasks/main.yaml @@ -1,4 +1,9 @@ --- +- name: Include containers_versions variables + include_vars: + file: ../../inventory/group_vars/containers_versions.yaml + tags: + - master_replicas - name: "Create kubernetes folders" file: @@ -43,14 +48,14 @@ - name: Join to Cluster shell: "{{ kubeadm_join_cmd.stdout }} --control-plane" register: res - retries: 10 + retries: 50 until: res is success any_errors_fatal: true rescue: - name: Join to Cluster with ingores shell: "{{ kubeadm_join_cmd.stdout }} --control-plane --ignore-preflight-errors=all" register: res - retries: 10 + retries: 50 until: res is success any_errors_fatal: true tags: @@ -135,7 +140,7 @@ namespace: kube-system spec: containers: - - image: {{ haproxy_image }} + - image: {{ images.haproxy }} imagePullPolicy: IfNotPresent name: haproxy livenessProbe: @@ -166,6 +171,22 @@ tags: - master_replicas +#Find the K8s interface based name based on the IP address of the node +- set_fact: + target_interface: "{{ item }}" + when: + - hostvars[inventory_hostname]['ansible_' + item].ipv4 is defined + - hostvars[inventory_hostname]['ansible_' + item]['ipv4']['address'] | ansible.utils.ipaddr(real_ip) + with_items: "{{ ansible_interfaces }}" + tags: + - master_replicas +- debug: + msg: >- + detected keepalived interface {{ target_interface }} + with address {{ real_ip }} + tags: + - master_replicas + - name: configure keepalived on Slaves copy: dest: /etc/keepalived/keepalived.conf @@ -184,7 +205,7 @@ vrrp_instance VI_1 { state BACKUP - interface {{ ansible_interfaces | difference(['lo', 'cni0','tunl0']) | first }} + interface {{ target_interface }} virtual_router_id {{ keepalived_router_id }} priority 100 authentication { @@ -234,7 +255,7 @@ namespace: kube-system spec: containers: - - image: {{ keepalived_image }} + - image: {{ images.keepalived }} imagePullPolicy: IfNotPresent name: keepalived resources: {} diff --git a/ansible/roles/primary_master/tasks/main.yaml b/ansible/roles/primary_master/tasks/main.yaml index a003b06c..102e3d08 100644 --- a/ansible/roles/primary_master/tasks/main.yaml +++ b/ansible/roles/primary_master/tasks/main.yaml @@ -1,4 +1,10 @@ --- +- name: Include containers_versions variables + include_vars: + file: ../../inventory/group_vars/containers_versions.yaml + tags: + - primary_master + - name: Ensures haproxy dir exists file: path: /etc/haproxy/ @@ -76,7 +82,7 @@ namespace: kube-system spec: containers: - - image: {{ haproxy_image }} + - image: {{ images.haproxy }} imagePullPolicy: IfNotPresent name: haproxy livenessProbe: @@ -107,6 +113,22 @@ tags: - primary_master +#Find the K8s interface based name based on the IP address of the node +- set_fact: + target_interface: "{{ hostvars[inventory_hostname]['ansible_' + item]['device'] }}" + when: + - hostvars[inventory_hostname]['ansible_' + item].ipv4 is defined + - hostvars[inventory_hostname]['ansible_' + item]['ipv4']['address'] | ansible.utils.ipaddr(real_ip) + with_items: "{{ ansible_interfaces }}" + tags: + - primary_master +- debug: + msg: >- + detected keepalived interface {{ target_interface }} + with address {{ real_ip }} + tags: + - primary_master + - name: configure keepalived on Master copy: dest: /etc/keepalived/keepalived.conf @@ -125,7 +147,7 @@ vrrp_instance VI_1 { state MASTER - interface {{ ansible_interfaces | difference(['lo', 'cni0','tunl0']) | first }} + interface {{ target_interface }} virtual_router_id {{ keepalived_router_id }} priority 101 authentication { @@ -175,7 +197,7 @@ namespace: kube-system spec: containers: - - image: {{ keepalived_image }} + - image: {{ images.keepalived }} imagePullPolicy: IfNotPresent name: keepalived resources: {} @@ -202,68 +224,11 @@ tags: - primary_master - -#- name: Install JQ -# apt: name=jq -# register: res -# retries: 10 -# until: res is success -# any_errors_fatal: true -# tags: -# - primary_master -# -#- name: Install YQ -# shell: wget https://github.com/mikefarah/yq/releases/download/v4.18.1/yq_linux_amd64.tar.gz -O - | tar xz && mv yq_linux_amd64 /usr/bin/yq -# register: res -# retries: 10 -# until: res is success -# any_errors_fatal: true -# tags: -# - primary_master -# -#- name: Delete Kustomize if installed -# ansible.builtin.file: -# path: kustomize -# state: absent -# tags: -# - primary_master -# -#- name: Install Kustomize -# shell: curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash -# register: res -# retries: 10 -# until: res is success -# any_errors_fatal: true -# tags: -# - primary_master - - name: Create Kubeadm config - v4 - copy: + template: + src: kubeadm-v4.yaml dest: /tmp/kubeadm.yaml force: yes - content: | - apiVersion: kubeadm.k8s.io/v1beta2 - kind: InitConfiguration - bootstrapTokens: - - groups: - - system:bootstrappers:kubeadm:default-node-token - token: {{ kubeadm_token }} - nodeRegistration: - criSocket: "unix:///var/run/crio/crio.sock" - --- - apiServer: - timeoutForControlPlane: 4m0s - kind: ClusterConfiguration - controlPlaneEndpoint: {{ control_plane_vip }}:{{ vip_port }} - kubernetesVersion: "{{ kube_version.split("-")[0] }}" - networking: - podSubnet: {{ pod_subnet }} - serviceSubnet: {{ cluster_svc_subnet }} - apiVersion: kubeadm.k8s.io/v1beta2 - --- - apiVersion: kubelet.config.k8s.io/v1beta1 - kind: KubeletConfiguration - cgroupDriver: systemd run_once: true when: pod_subnet and not pod_subnet_v6 tags: @@ -274,7 +239,7 @@ dest: /tmp/kubeadm.yaml force: yes content: | - apiVersion: kubeadm.k8s.io/v1beta2 + apiVersion: kubeadm.k8s.io/v1beta3 kind: InitConfiguration bootstrapTokens: - groups: @@ -291,7 +256,7 @@ networking: podSubnet: {{ pod_subnet }},{{ pod_subnet_v6 }} serviceSubnet: {{ cluster_svc_subnet }},{{ cluster_svc_subnet_v6 }} - apiVersion: kubeadm.k8s.io/v1beta2 + apiVersion: kubeadm.k8s.io/v1beta3 --- apiVersion: kubelet.config.k8s.io/v1beta1 kind: KubeletConfiguration @@ -302,7 +267,11 @@ - primary_master - name: Bootstrap first Master - command: kubeadm init --config=/tmp/kubeadm.yaml --upload-certs + command: kubeadm init --config=/tmp/kubeadm.yaml --upload-certs + register: res + retries: 50 + until: res is success + any_errors_fatal: true tags: - primary_master diff --git a/ansible/roles/primary_master/templates/kubeadm-v4.yaml b/ansible/roles/primary_master/templates/kubeadm-v4.yaml new file mode 100644 index 00000000..be8e4f1f --- /dev/null +++ b/ansible/roles/primary_master/templates/kubeadm-v4.yaml @@ -0,0 +1,25 @@ +apiVersion: kubeadm.k8s.io/v1beta3 +kind: InitConfiguration +bootstrapTokens: +- groups: + - system:bootstrappers:kubeadm:default-node-token + token: {{ kubeadm_token }} +nodeRegistration: + criSocket: "unix:///var/run/crio/crio.sock" +--- +apiServer: + timeoutForControlPlane: 4m0s +kind: ClusterConfiguration +controlPlaneEndpoint: {{ control_plane_vip }}:{{ vip_port }} +kubernetesVersion: "{{ kube_version.split("-")[0] }}" +networking: + podSubnet: {{ pod_subnet }} + serviceSubnet: {{ cluster_svc_subnet }} +controllerManager: + extraArgs: + "node-cidr-mask-size": "27" +apiVersion: kubeadm.k8s.io/v1beta3 +--- +apiVersion: kubelet.config.k8s.io/v1beta1 +kind: KubeletConfiguration +cgroupDriver: systemd \ No newline at end of file diff --git a/ansible/roles/remove_k8s_node/tasks/main.yaml b/ansible/roles/remove_k8s_node/tasks/main.yaml new file mode 100644 index 00000000..4fb457d2 --- /dev/null +++ b/ansible/roles/remove_k8s_node/tasks/main.yaml @@ -0,0 +1,7 @@ +--- +- name: Delete Node + shell: kubectl delete nodes {{inventory_hostname}} + delegate_to: "{{groups['k8s_primary_master'][0]}}" + ignore_errors: yes + tags: + - remove_k8s_nodes diff --git a/ansible/roles/sandbox/tasks/main.yaml b/ansible/roles/sandbox/tasks/main.yaml index 25400b17..8040f207 100644 --- a/ansible/roles/sandbox/tasks/main.yaml +++ b/ansible/roles/sandbox/tasks/main.yaml @@ -3,34 +3,15 @@ file: ../../inventory/group_vars/containers_versions.yaml tags: - sandbox - + - name: Pre Pull Kubeadm Images command: kubeadm config images pull --kubernetes-version "{{ kube_version.split("-")[0] }}" tags: - sandbox - name: Pre Pull Images - command: crictl pull "{{ item }}" - with_items: - - docker.io/bloomberg/goldpinger:v3.3.0 - - docker.io/calico/cni:v3.22.0 - - docker.io/calico/kube-controllers:v3.22.0 - - docker.io/calico/node:v3.22.0 - - docker.io/calico/pod2daemon-flexvol:v3.22.0 - - docker.io/calico/typha:v3.22.0 - - gcr.io/google-samples/gb-frontend:v4 - - gcr.io/google_samples/gb-redisslave:v1 - - haproxy:latest - - k8s.gcr.io/metrics-server/metrics-server:v0.4.2 - - k8s.gcr.io/redis:e2e - - osixia/keepalived:latest - - kubernetesui/dashboard:v2.2.0 - - kubernetesui/metrics-scraper:v1.0.6 - - quay.io/camillo/vkaci:{{ vkaci }} - - quay.io/camillo/vkaci-init:{{ vkaci }} - - k8s.gcr.io/ingress-nginx/kube-webhook-certgen:v1.1.1 - - k8s.gcr.io/ingress-nginx/controller:v1.1.1 - - neo4j:4.4.3 + command: crictl pull "{{ item.value }}" + loop: "{{ lookup('ansible.builtin.dict', images) }} " tags: - sandbox diff --git a/ansible/roles/workers/tasks/main.yaml b/ansible/roles/workers/tasks/main.yaml index e74fd084..85944ad3 100644 --- a/ansible/roles/workers/tasks/main.yaml +++ b/ansible/roles/workers/tasks/main.yaml @@ -1,5 +1,13 @@ --- - +- name: Wait for the nodes to be reachable + wait_for_connection: + connect_timeout: 10 + sleep: 5 + delay: 5 + timeout: 5000 + tags: + - k8s_nodes + - name: Generate worker join token shell: kubeadm token create --print-join-command register: kubeadm_join_cmd @@ -16,15 +24,15 @@ - name: Join to Cluster shell: "{{ kubeadm_join_cmd.stdout }}" register: join_workers - retries: 10 + retries: 50 until: join_workers is success any_errors_fatal: true rescue: - name: Join to Cluster shell: "{{ kubeadm_join_cmd.stdout }} --ignore-preflight-errors=all" register: join_workers - retries: 10 + retries: 50 until: join_workers is success any_errors_fatal: true tags: - - workers + - workers \ No newline at end of file diff --git a/ansible/sandbox_cluster.yaml b/ansible/sandbox_cluster.yaml index cb28826a..4aa0b3e5 100644 --- a/ansible/sandbox_cluster.yaml +++ b/ansible/sandbox_cluster.yaml @@ -37,6 +37,9 @@ - hosts: k8s_primary_master gather_facts: false roles: - - calico - - k8s_addons - - ingress-nginx \ No newline at end of file + - role: calico + when: cni_plugin == "Calico" + - role: kube-router + when: cni_plugin == "Kube-Router" + - role: k8s_addons + - role: ingress-nginx \ No newline at end of file diff --git a/docs/terraformVars.md b/docs/terraformVars.md index 9f90f9ed..5450280b 100644 --- a/docs/terraformVars.md +++ b/docs/terraformVars.md @@ -167,7 +167,7 @@ Use this section to specify your Kubernetes Cluster Configuration parameters. * pod_subnet: The subnet for the PODs. Keep in mind every Calico Nodes gets a /26 by default. Do your math before! if you want to have for example 64 nodes you need a /20 subnetas minimum or you won't have enough /26 to allocate!! * cluster_svc_subnet: The Cluster-IP Service subnet * external_svc_subnet: The External Service subnet used for Services of type LoadBalancer -* ntp_server: IP address or name of the DNS server, NTP is good... use NTP +* ntp_servers: IP address or name of the DNS server, NTP is good... use NTP * time_zone: The time zone in the standard unix format. Use `timedatectl list-timezones` to get a list of valid Time Zones * docker_mirror: (Optional, set to "" to disable) in the format of IP:PORT configure CRIO to pull images from a dockerhub mirror. Very useful now that docker limits the pull youcan do. This DOES not install a mirror for you. You need to install one on your own. If you get stuck [This](docker_mirror.dm) is how I did it. * ingress_ip: The cluster comes with a few add-ons, one is an Nginx Ingress controller. This parameter set its IP address. This must be a free address from the external_svc_subnet @@ -186,7 +186,7 @@ k8s_cluster = { node_sub = "192.168.2.0/24" pod_subnet = "10.1.0.0/16" cluster_svc_subnet = "192.168.8.0/22" - ntp_server = "72.163.32.44" + ntp_servers = "72.163.32.44" time_zone = "Australia/Sydney" docker_mirror = "10.67.185.120:5000" ingress_ip = "192.168.3.1" diff --git a/packer/generate_vm_export.sh b/packer/generate_vm_export.sh index ba2a823f..7a107a17 100644 --- a/packer/generate_vm_export.sh +++ b/packer/generate_vm_export.sh @@ -1,4 +1,4 @@ -!#/bin/bash +#!/bin/bash ## Note DO NOT COMPRESS THE OVA vCenter can't import it otherwise ovftool vi://administrator%40vsphere.local:123Cisco123%21@vc1.cam.ciscolabs.com/STLD/vm/Templates/Ubuntu21SandBox /nfs-share/www/nkt/nkt_template.ova \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 0e058095..ccb59774 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,23 +1,21 @@ https://github.com/datacenter/pyaci/archive/master.zip -Flask -flask_executor -pyOpenSSL -requests -urllib3 -turbo_flask -ipaddress -pyVmomi -pyVim -shelljob -ansible -python-dateutil -turbo_flask -pyVmomi -netaddr -pyhcl -jinja2 -pytest -selenium -gunicorn -gevent -python-dotenv \ No newline at end of file +Flask==2.2.2 +Flask-Executor==1.0.0 +pyOpenSSL==22.1.0 +requests==2.28.1 +urllib3==1.26.13 +ipaddress==1.0.23 +pyvim==3.0.3 +pyvmomi==8.0.0.1 +shelljob==0.6.3 +ansible==6.6.0 +python-dateutil==2.8.2 +turbo_flask==0.8.3 +netaddr==0.8.0 +python-hcl2==3.0.5 +jinja2==3.1.2 +pytest==7.2.0 +selenium==4.6.1 +gunicorn==20.1.0 +gevent==22.10.2 +python-dotenv==0.21.0 \ No newline at end of file diff --git a/startup.sh b/startup.sh new file mode 100755 index 00000000..9d5c5fc4 --- /dev/null +++ b/startup.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ $# -lt 1 ] +then + echo "Usage : $0 " + exit +fi + +cd terraform +gunicorn -w 1 --threads 12 -k gevent -b 0.0.0.0:$1 appflask:app \ No newline at end of file diff --git a/terraform/.env b/terraform/.env deleted file mode 100644 index e69de29b..00000000 diff --git a/terraform/TEMPLATES/K8s_Packages b/terraform/TEMPLATES/K8s_Packages index 0534dcce..1b558779 100644 --- a/terraform/TEMPLATES/K8s_Packages +++ b/terraform/TEMPLATES/K8s_Packages @@ -96,6 +96,62 @@ SHA256: b6fdfd86c8a3665ab10b9bd9565354977cd5abbaefeb2ee953bc4a13fe7d3326 Section: misc Size: 11168024 +Package: cri-tools +Version: 1.23.0-00 +Installed-Size: 43490 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Container Runtime Interface Tools + Binaries that interact with the container runtime through the container runtime interface +Homepage: https://kubernetes.io +Filename: pool/cri-tools_1.23.0-00_amd64_6d748dd24f90b3696e35ea3d9199e2f76ea4793371f0d0658498b1f96d9f03d3.deb +Priority: optional +SHA256: 6d748dd24f90b3696e35ea3d9199e2f76ea4793371f0d0658498b1f96d9f03d3 +Section: misc +Size: 15272040 + +Package: cri-tools +Version: 1.24.0-00 +Installed-Size: 32406 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Container Runtime Interface Tools + Binaries that interact with the container runtime through the container runtime interface +Homepage: https://kubernetes.io +Filename: pool/cri-tools_1.24.0-00_amd64_f17229a6823a3a37171840317dd51137fe2effc9de0f8029256db50b827fdf53.deb +Priority: optional +SHA256: f17229a6823a3a37171840317dd51137fe2effc9de0f8029256db50b827fdf53 +Section: misc +Size: 12239440 + +Package: cri-tools +Version: 1.24.2-00 +Installed-Size: 32455 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Container Runtime Interface Tools + Binaries that interact with the container runtime through the container runtime interface +Homepage: https://kubernetes.io +Filename: pool/cri-tools_1.24.2-00_amd64_8ce48ca39ead11b4b3ba109d57439f9024e6e53bb3261ba75466d403542a5908.deb +Priority: optional +SHA256: 8ce48ca39ead11b4b3ba109d57439f9024e6e53bb3261ba75466d403542a5908 +Section: misc +Size: 12267460 + +Package: cri-tools +Version: 1.25.0-00 +Installed-Size: 49137 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Container Runtime Interface Tools + Binaries that interact with the container runtime through the container runtime interface +Homepage: https://kubernetes.io +Filename: pool/cri-tools_1.25.0-00_amd64_189468b949c777e07ca098365cbde0bcbe0c1fdbf8c406501f64bdbb447ae6f8.deb +Priority: optional +SHA256: 189468b949c777e07ca098365cbde0bcbe0c1fdbf8c406501f64bdbb447ae6f8 +Section: misc +Size: 17945132 + Package: docker-engine Version: 1.11.2-0~xenial Installed-Size: 71704 @@ -3556,6 +3612,66 @@ SHA256: deef21abb43f93affdbf7669f1ce674d458f3372db7f3f76c6df6d73fd82e18d Section: misc Size: 8584164 +Package: kubeadm +Version: 1.21.11-00 +Installed-Size: 43852 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.23.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.21.11-00_amd64_2e9eca5c9a94dde13e15dfea70e466561f1651d4f650ffd2c357de51197f3932.deb +Priority: optional +SHA256: 2e9eca5c9a94dde13e15dfea70e466561f1651d4f650ffd2c357de51197f3932 +Section: misc +Size: 8592652 + +Package: kubeadm +Version: 1.21.12-00 +Installed-Size: 43852 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.23.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.21.12-00_amd64_dec5abc74649335c579fd075c34e3efa0d67d0378775b71e4e404aac46989df5.deb +Priority: optional +SHA256: dec5abc74649335c579fd075c34e3efa0d67d0378775b71e4e404aac46989df5 +Section: misc +Size: 8594520 + +Package: kubeadm +Version: 1.21.13-00 +Installed-Size: 43852 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.21.13-00_amd64_2113a4d8c050c41a0a43435752eb1087bcbbfa32cb2e4dd0c428d00ccef17ecd.deb +Priority: optional +SHA256: 2113a4d8c050c41a0a43435752eb1087bcbbfa32cb2e4dd0c428d00ccef17ecd +Section: misc +Size: 8591012 + +Package: kubeadm +Version: 1.21.14-00 +Installed-Size: 43852 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.21.14-00_amd64_bdd372d40ae24b0824b307f1a9581b401aa053df0d813b4152b9fbb047fcdac3.deb +Priority: optional +SHA256: bdd372d40ae24b0824b307f1a9581b401aa053df0d813b4152b9fbb047fcdac3 +Section: misc +Size: 8594296 + Package: kubeadm Version: 1.22.0-00 Installed-Size: 44776 @@ -3676,6 +3792,141 @@ SHA256: dd5792ce751f8528086a1aaa0dc12d8c87a275a1fb74f2463b479f09c4011603 Section: misc Size: 8726504 +Package: kubeadm +Version: 1.22.8-00 +Installed-Size: 44796 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.23.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.8-00_amd64_389f7bffc4e1fff0b069cc329089d0b8e5bb329fa407557dd616130141d83bf2.deb +Priority: optional +SHA256: 389f7bffc4e1fff0b069cc329089d0b8e5bb329fa407557dd616130141d83bf2 +Section: misc +Size: 8723560 + +Package: kubeadm +Version: 1.22.9-00 +Installed-Size: 44796 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.23.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.9-00_amd64_8e2da309d6cd2b345c00907d61f2e9ba0b3331e294759014cfb1b8ca47e4623b.deb +Priority: optional +SHA256: 8e2da309d6cd2b345c00907d61f2e9ba0b3331e294759014cfb1b8ca47e4623b +Section: misc +Size: 8721036 + +Package: kubeadm +Version: 1.22.10-00 +Installed-Size: 44796 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.10-00_amd64_4c5cc18e660ef484d7365fc46c313f8d228c65f072086eb40624a868f43810ed.deb +Priority: optional +SHA256: 4c5cc18e660ef484d7365fc46c313f8d228c65f072086eb40624a868f43810ed +Section: misc +Size: 8727780 + +Package: kubeadm +Version: 1.22.11-00 +Installed-Size: 44796 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.11-00_amd64_88908ea2b11314ded6650a4ac48050f11a98d2b1d3979f61af4f62937da0d83c.deb +Priority: optional +SHA256: 88908ea2b11314ded6650a4ac48050f11a98d2b1d3979f61af4f62937da0d83c +Section: misc +Size: 8727000 + +Package: kubeadm +Version: 1.22.12-00 +Installed-Size: 44800 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.12-00_amd64_70d74b06cd067a13ca64aca522c1b83adebbe7e4a104f9b007e2d66d487b2ad7.deb +Priority: optional +SHA256: 70d74b06cd067a13ca64aca522c1b83adebbe7e4a104f9b007e2d66d487b2ad7 +Section: misc +Size: 8727632 + +Package: kubeadm +Version: 1.22.13-00 +Installed-Size: 44800 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.13-00_amd64_89961aa820721c6e905aa8f4201fe2c7d1c5ef91df95ae29b9aa411444e08864.deb +Priority: optional +SHA256: 89961aa820721c6e905aa8f4201fe2c7d1c5ef91df95ae29b9aa411444e08864 +Section: misc +Size: 8723720 + +Package: kubeadm +Version: 1.22.14-00 +Installed-Size: 44800 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.14-00_amd64_086233834fc7ec8308db1bff1256293fdec2c997da34ce2e2c9417f920dd6ad0.deb +Priority: optional +SHA256: 086233834fc7ec8308db1bff1256293fdec2c997da34ce2e2c9417f920dd6ad0 +Section: misc +Size: 8728644 + +Package: kubeadm +Version: 1.22.15-00 +Installed-Size: 44800 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.15-00_amd64_3107ceee2c0d18a6c473c6c764178457d9e1d7b2c63278f5b6178ef98eb23620.deb +Priority: optional +SHA256: 3107ceee2c0d18a6c473c6c764178457d9e1d7b2c63278f5b6178ef98eb23620 +Section: misc +Size: 8725012 + +Package: kubeadm +Version: 1.22.16-00 +Installed-Size: 44800 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. +Homepage: https://kubernetes.io +Filename: pool/kubeadm_1.22.16-00_amd64_389f8344881fa5183fc4004ce1f23f8920dedabf3be1119d265fb77276187f20.deb +Priority: optional +SHA256: 389f8344881fa5183fc4004ce1f23f8920dedabf3be1119d265fb77276187f20 +Section: misc +Size: 8726316 + Package: kubeadm Version: 1.23.0-00 Installed-Size: 44156 @@ -3751,7689 +4002,9122 @@ SHA256: 0950936fcedab589d0b80fa38513837435205490196ed0a80badb7c68fae8753 Section: misc Size: 8582916 -Package: kubectl -Version: 1.5.1-00 -Installed-Size: 49189 +Package: kubeadm +Version: 1.23.5-00 +Installed-Size: 44168 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.23.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.5.1-00_amd64_c188aff0b89c6164bf75a0ad2d16080082222c7dd04943b4895ffdedee523ecf.deb +Filename: pool/kubeadm_1.23.5-00_amd64_642bf36ddafb1b8a3d528708d50a68df145747ef397b55546f26879be1b81223.deb Priority: optional -SHA256: c188aff0b89c6164bf75a0ad2d16080082222c7dd04943b4895ffdedee523ecf +SHA256: 642bf36ddafb1b8a3d528708d50a68df145747ef397b55546f26879be1b81223 Section: misc -Size: 7951824 +Size: 8581552 -Package: kubectl -Version: 1.5.2-00 -Installed-Size: 49189 +Package: kubeadm +Version: 1.23.6-00 +Installed-Size: 44172 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.23.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.5.2-00_amd64_7ca7fea62ab4672bb09d49a0ec3a23d09386cb303f97713f6a4406459ef0a8e0.deb +Filename: pool/kubeadm_1.23.6-00_amd64_d8bda405d460ba8b6cd935721fdd6b83f09c49914dc61cf987e840d99f5bbc23.deb Priority: optional -SHA256: 7ca7fea62ab4672bb09d49a0ec3a23d09386cb303f97713f6a4406459ef0a8e0 +SHA256: d8bda405d460ba8b6cd935721fdd6b83f09c49914dc61cf987e840d99f5bbc23 Section: misc -Size: 7951374 +Size: 8585080 -Package: kubectl -Version: 1.5.3-00 -Installed-Size: 49197 +Package: kubeadm +Version: 1.23.7-00 +Installed-Size: 44172 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.5.3-00_amd64_10ffbdd74343d2b8b3ba31adc7eeb37b690badd4ce7f9bfb9a54e86ee05d433d.deb +Filename: pool/kubeadm_1.23.7-00_amd64_c9e81e7e695d2080916b233700362eb27293a79c68732a41f823062d4c465399.deb Priority: optional -SHA256: 10ffbdd74343d2b8b3ba31adc7eeb37b690badd4ce7f9bfb9a54e86ee05d433d +SHA256: c9e81e7e695d2080916b233700362eb27293a79c68732a41f823062d4c465399 Section: misc -Size: 7950932 +Size: 8587140 -Package: kubectl -Version: 1.5.6-00 -Installed-Size: 49202 +Package: kubeadm +Version: 1.23.8-00 +Installed-Size: 44172 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.5.6-00_amd64_aeaf2d825c8426b970c092fc8b0e12d701d6c87ec09027a58244538841ae0ad2.deb +Filename: pool/kubeadm_1.23.8-00_amd64_44ae025bc407f430ceac9ebf48a0d3f1dd1fd564ecebb8ca328d7ef63a2ec5ca.deb Priority: optional -SHA256: aeaf2d825c8426b970c092fc8b0e12d701d6c87ec09027a58244538841ae0ad2 +SHA256: 44ae025bc407f430ceac9ebf48a0d3f1dd1fd564ecebb8ca328d7ef63a2ec5ca Section: misc -Size: 7954048 +Size: 8584896 -Package: kubectl -Version: 1.5.7-00 -Installed-Size: 49206 +Package: kubeadm +Version: 1.23.9-00 +Installed-Size: 44176 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.5.7-00_amd64_0e7de187eed0ca04d6ef148f617c09c781c7aec28a15140691e60d5878c7b30c.deb +Filename: pool/kubeadm_1.23.9-00_amd64_c80b8669e13cfa733790803aadecc42be2eeb4d36ff7596ab0b7759f517f20c5.deb Priority: optional -SHA256: 0e7de187eed0ca04d6ef148f617c09c781c7aec28a15140691e60d5878c7b30c +SHA256: c80b8669e13cfa733790803aadecc42be2eeb4d36ff7596ab0b7759f517f20c5 Section: misc -Size: 7952552 +Size: 8583780 -Package: kubectl -Version: 1.6.0-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.23.10-00 +Installed-Size: 44180 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.0-00_amd64_a068b847837acec84e1922277dc46f6fee2b0c2f930405ff232cf9ac7e3473e5.deb +Filename: pool/kubeadm_1.23.10-00_amd64_7195ae00d9db96fde6efc7099ba13f157bb44e5b8994ec8a02f8ae826fdd1175.deb Priority: optional -SHA256: a068b847837acec84e1922277dc46f6fee2b0c2f930405ff232cf9ac7e3473e5 +SHA256: 7195ae00d9db96fde6efc7099ba13f157bb44e5b8994ec8a02f8ae826fdd1175 Section: misc -Size: 9659414 +Size: 8586024 -Package: kubectl -Version: 1.6.1-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.23.11-00 +Installed-Size: 44184 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.1-00_amd64_b224b79174ff2d1a5ba8db17f67b7284e4e969512506b056cf7f7754fbdccbdc.deb +Filename: pool/kubeadm_1.23.11-00_amd64_2d966251b0f37fd18b78e068d2eb1fef36a0422740d0e799b4f82c9fc01e6727.deb Priority: optional -SHA256: b224b79174ff2d1a5ba8db17f67b7284e4e969512506b056cf7f7754fbdccbdc +SHA256: 2d966251b0f37fd18b78e068d2eb1fef36a0422740d0e799b4f82c9fc01e6727 Section: misc -Size: 9655532 +Size: 8584636 -Package: kubectl -Version: 1.6.2-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.23.12-00 +Installed-Size: 44184 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.2-00_amd64_b9d37ee035847c965a21427aa6cc3f61f1a9a6d2c8eee8288d1f8657628930ae.deb +Filename: pool/kubeadm_1.23.12-00_amd64_1c8fdbaafbb56deb5bd855775876d907d28c0b186d2dd2b5fd12fe5151082344.deb Priority: optional -SHA256: b9d37ee035847c965a21427aa6cc3f61f1a9a6d2c8eee8288d1f8657628930ae +SHA256: 1c8fdbaafbb56deb5bd855775876d907d28c0b186d2dd2b5fd12fe5151082344 Section: misc -Size: 9658826 +Size: 8597260 -Package: kubectl -Version: 1.6.3-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.23.13-00 +Installed-Size: 44184 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.3-00_amd64_05d48fa118b6538ee2bc0b864aeb09f2cede83990fc8819875f698a5dece0c9b.deb +Filename: pool/kubeadm_1.23.13-00_amd64_7d6a9dd2f31a663ff84e0dc58522f2fa806b81c846a810d67e3b4c5d603739b9.deb Priority: optional -SHA256: 05d48fa118b6538ee2bc0b864aeb09f2cede83990fc8819875f698a5dece0c9b +SHA256: 7d6a9dd2f31a663ff84e0dc58522f2fa806b81c846a810d67e3b4c5d603739b9 Section: misc -Size: 9656568 +Size: 8589276 -Package: kubectl -Version: 1.6.4-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.23.14-00 +Installed-Size: 44188 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.4-00_amd64_fd34da38db241a88a6e95b825139e0df6a627f141ae9ed39f948107a8437935e.deb +Filename: pool/kubeadm_1.23.14-00_amd64_46c467321d5a21d227aad28c1eda93bb44295178e825dd1a82ed950795115bf3.deb Priority: optional -SHA256: fd34da38db241a88a6e95b825139e0df6a627f141ae9ed39f948107a8437935e +SHA256: 46c467321d5a21d227aad28c1eda93bb44295178e825dd1a82ed950795115bf3 Section: misc -Size: 9658688 +Size: 8593068 -Package: kubectl -Version: 1.6.5-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.0-00 +Installed-Size: 43340 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.23.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.5-00_amd64_c87736ba4285ed607853a585faa0b6fe591454f0b0ba0a2d655ffc88e2c98ee6.deb +Filename: pool/kubeadm_1.24.0-00_amd64_1def6a7bedf6c9c6a99102d219eecc9831a91a6b224056e53d0cd027ba42ce39.deb Priority: optional -SHA256: c87736ba4285ed607853a585faa0b6fe591454f0b0ba0a2d655ffc88e2c98ee6 +SHA256: 1def6a7bedf6c9c6a99102d219eecc9831a91a6b224056e53d0cd027ba42ce39 Section: misc -Size: 9659470 +Size: 9003360 -Package: kubectl -Version: 1.6.6-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.1-00 +Installed-Size: 43340 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.19.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.6-00_amd64_671ee06fc52fb9298990a3f5044033df14a6dc542cc1eee1349fb8b111e83992.deb +Filename: pool/kubeadm_1.24.1-00_amd64_2434055be4344443d31a96e4ae2c5b1fc392107fe4167e8af7f0ce9ee0fcd011.deb Priority: optional -SHA256: 671ee06fc52fb9298990a3f5044033df14a6dc542cc1eee1349fb8b111e83992 +SHA256: 2434055be4344443d31a96e4ae2c5b1fc392107fe4167e8af7f0ce9ee0fcd011 Section: misc -Size: 9660046 +Size: 9000048 -Package: kubectl -Version: 1.6.7-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.2-00 +Installed-Size: 43348 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.7-00_amd64_3137dc28aeb6a9dd364750d4c8d38581926fa45a2273ac5f6b6319aa5b1a4481.deb +Filename: pool/kubeadm_1.24.2-00_amd64_086954e97b42f156ed7432cbc7c19f31134ae1967f91c081ee8332e0da970338.deb Priority: optional -SHA256: 3137dc28aeb6a9dd364750d4c8d38581926fa45a2273ac5f6b6319aa5b1a4481 +SHA256: 086954e97b42f156ed7432cbc7c19f31134ae1967f91c081ee8332e0da970338 Section: misc -Size: 9655070 +Size: 8996824 -Package: kubectl -Version: 1.6.8-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.3-00 +Installed-Size: 43348 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.8-00_amd64_0aa203bad55d821a0729009bb1436618b70eafe4549f3178f02b1cd11b2fca83.deb +Filename: pool/kubeadm_1.24.3-00_amd64_a185bea971069e698ed5104545741e561a7c629ebb5587aabc0b2abc9bf79af7.deb Priority: optional -SHA256: 0aa203bad55d821a0729009bb1436618b70eafe4549f3178f02b1cd11b2fca83 +SHA256: a185bea971069e698ed5104545741e561a7c629ebb5587aabc0b2abc9bf79af7 Section: misc -Size: 9659914 +Size: 9001796 -Package: kubectl -Version: 1.6.9-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.4-00 +Installed-Size: 43356 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.9-00_amd64_c6ea792bb752621b2af1c00f5bb56686df831bcd9b2ef4a5e090383fc4004656.deb +Filename: pool/kubeadm_1.24.4-00_amd64_2be4f67b385381dde3d8ad33c835afc81dccb45daea0a20478e6cd177bd53072.deb Priority: optional -SHA256: c6ea792bb752621b2af1c00f5bb56686df831bcd9b2ef4a5e090383fc4004656 +SHA256: 2be4f67b385381dde3d8ad33c835afc81dccb45daea0a20478e6cd177bd53072 Section: misc -Size: 9656488 +Size: 9003892 -Package: kubectl -Version: 1.6.10-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.5-00 +Installed-Size: 43360 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.10-00_amd64_2ed0f68b0a1e8257fd363bb35de28b29be3ec086dacea066790fa00fdf4a0e74.deb +Filename: pool/kubeadm_1.24.5-00_amd64_d04b12d5d0305e9a8ddb8ec92ed44b11b7b76343a5e260f09a3c51fe217a5f33.deb Priority: optional -SHA256: 2ed0f68b0a1e8257fd363bb35de28b29be3ec086dacea066790fa00fdf4a0e74 +SHA256: d04b12d5d0305e9a8ddb8ec92ed44b11b7b76343a5e260f09a3c51fe217a5f33 Section: misc -Size: 9659948 +Size: 9007492 -Package: kubectl -Version: 1.6.11-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.6-00 +Installed-Size: 43360 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.11-00_amd64_0049f491da3c6d5826d5cc0862a84da361daf3c356fddb507746891f456e4bac.deb +Filename: pool/kubeadm_1.24.6-00_amd64_269f8854bc6a91c1fd66ede0c1bfe2455074f987751c69627c3aac68cb12beae.deb Priority: optional -SHA256: 0049f491da3c6d5826d5cc0862a84da361daf3c356fddb507746891f456e4bac +SHA256: 269f8854bc6a91c1fd66ede0c1bfe2455074f987751c69627c3aac68cb12beae Section: misc -Size: 9661276 +Size: 9005668 -Package: kubectl -Version: 1.6.12-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.7-00 +Installed-Size: 43372 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.12-00_amd64_54410fc4e429df54df34b406b2515cdb3043b11f14ab87ab522f54a6a4e10e92.deb +Filename: pool/kubeadm_1.24.7-00_amd64_0e706ad5bc46f464528494f73c81f1fd6729bb952a40c90cc5bfcc3f6215bdba.deb Priority: optional -SHA256: 54410fc4e429df54df34b406b2515cdb3043b11f14ab87ab522f54a6a4e10e92 +SHA256: 0e706ad5bc46f464528494f73c81f1fd6729bb952a40c90cc5bfcc3f6215bdba Section: misc -Size: 9657018 +Size: 9008684 -Package: kubectl -Version: 1.6.13-00 -Installed-Size: 69065 +Package: kubeadm +Version: 1.24.8-00 +Installed-Size: 43372 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.6.13-00_amd64_a2c7e0339dccaecf28740a2e8ac3f953c45f770db4a7f68003f99fcd7fdceb42.deb +Filename: pool/kubeadm_1.24.8-00_amd64_445c22790686d97b5e613d6ce3dd3f2dcd3e6c940239db39051621d430d5e7c0.deb Priority: optional -SHA256: a2c7e0339dccaecf28740a2e8ac3f953c45f770db4a7f68003f99fcd7fdceb42 +SHA256: 445c22790686d97b5e613d6ce3dd3f2dcd3e6c940239db39051621d430d5e7c0 Section: misc -Size: 9658034 +Size: 9011400 -Package: kubectl -Version: 1.7.0-00 -Installed-Size: 70701 +Package: kubeadm +Version: 1.25.0-00 +Installed-Size: 42776 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 0.8.7), cri-tools (>= 1.24.2) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.0-00_amd64_6bd51a1ed15eb74ad2d72823a301c71e769dcc12ec10294eac3026cb77e03860.deb +Filename: pool/kubeadm_1.25.0-00_amd64_4642597dc62c5a9d52dd958b80727b3850c83645f39c29b9e03b9e9e28b9597a.deb Priority: optional -SHA256: 6bd51a1ed15eb74ad2d72823a301c71e769dcc12ec10294eac3026cb77e03860 +SHA256: 4642597dc62c5a9d52dd958b80727b3850c83645f39c29b9e03b9e9e28b9597a Section: misc -Size: 10145062 +Size: 9212664 -Package: kubectl -Version: 1.7.1-00 -Installed-Size: 70701 +Package: kubeadm +Version: 1.25.1-00 +Installed-Size: 42784 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.1-00_amd64_7f6d0471be6524d0d0aec8e9f515e0261a8e364d4fd2f25f22cba4895634bab0.deb +Filename: pool/kubeadm_1.25.1-00_amd64_be707f7e54f77841e1d5e41e4951b51716218f652141e132de486adb82ca6520.deb Priority: optional -SHA256: 7f6d0471be6524d0d0aec8e9f515e0261a8e364d4fd2f25f22cba4895634bab0 +SHA256: be707f7e54f77841e1d5e41e4951b51716218f652141e132de486adb82ca6520 Section: misc -Size: 10150588 +Size: 9215452 -Package: kubectl -Version: 1.7.2-00 -Installed-Size: 70659 +Package: kubeadm +Version: 1.25.2-00 +Installed-Size: 42784 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.2-00_amd64_cd4dec0c4d75f1553712543c03720c3fede37ff8a46b97f287d7f4bea58f36c6.deb +Filename: pool/kubeadm_1.25.2-00_amd64_5f3996559255107d2ad690fdded29e76bb6b550154622ccf22444753d2ab2272.deb Priority: optional -SHA256: cd4dec0c4d75f1553712543c03720c3fede37ff8a46b97f287d7f4bea58f36c6 +SHA256: 5f3996559255107d2ad690fdded29e76bb6b550154622ccf22444753d2ab2272 Section: misc -Size: 10128282 +Size: 9218556 -Package: kubectl -Version: 1.7.3-01 -Installed-Size: 70659 +Package: kubeadm +Version: 1.25.3-00 +Installed-Size: 42788 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.3-01_amd64_84173e3f104760b832ddf732bf02f1834cbf719032746518a52efcc942dba4c6.deb +Filename: pool/kubeadm_1.25.3-00_amd64_d0a6aa0cebfe3aa7ef0e794ac572264fb5b59f45728bbac287cc848575d18dfa.deb Priority: optional -SHA256: 84173e3f104760b832ddf732bf02f1834cbf719032746518a52efcc942dba4c6 +SHA256: d0a6aa0cebfe3aa7ef0e794ac572264fb5b59f45728bbac287cc848575d18dfa Section: misc -Size: 10132298 +Size: 9219908 -Package: kubectl -Version: 1.7.4-00 -Installed-Size: 70659 +Package: kubeadm +Version: 1.25.4-00 +Installed-Size: 42788 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: kubelet (>= 1.19.0), kubectl (>= 1.19.0), kubernetes-cni (>= 1.1.1), cri-tools (>= 1.25.0) +Description: Kubernetes Cluster Bootstrapping Tool + The Kubernetes command line tool for bootstrapping a Kubernetes cluster. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.4-00_amd64_6ee4015eabaa1e0cd4e2895c102c1c341f1c0037b28cb7700424d0f6f04a2416.deb +Filename: pool/kubeadm_1.25.4-00_amd64_45767c3d20a32a0718a27a7c6857ec5932ad3897cca23dd78d13df3ba6db437e.deb Priority: optional -SHA256: 6ee4015eabaa1e0cd4e2895c102c1c341f1c0037b28cb7700424d0f6f04a2416 +SHA256: 45767c3d20a32a0718a27a7c6857ec5932ad3897cca23dd78d13df3ba6db437e Section: misc -Size: 10125896 +Size: 9218672 Package: kubectl -Version: 1.7.5-00 -Installed-Size: 70659 +Version: 1.5.1-00 +Installed-Size: 49189 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.5-00_amd64_363445c3be161e924d1209c60e24dd2d0657d68bcf7c17e8ec2a6dc603c5d363.deb +Filename: pool/kubectl_1.5.1-00_amd64_c188aff0b89c6164bf75a0ad2d16080082222c7dd04943b4895ffdedee523ecf.deb Priority: optional -SHA256: 363445c3be161e924d1209c60e24dd2d0657d68bcf7c17e8ec2a6dc603c5d363 +SHA256: c188aff0b89c6164bf75a0ad2d16080082222c7dd04943b4895ffdedee523ecf Section: misc -Size: 10133546 +Size: 7951824 Package: kubectl -Version: 1.7.6-00 -Installed-Size: 70664 +Version: 1.5.2-00 +Installed-Size: 49189 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.6-00_amd64_a8c59bb8105f119061ed368451923465351488efa537a6cf9f88e3ce0f0422d1.deb +Filename: pool/kubectl_1.5.2-00_amd64_7ca7fea62ab4672bb09d49a0ec3a23d09386cb303f97713f6a4406459ef0a8e0.deb Priority: optional -SHA256: a8c59bb8105f119061ed368451923465351488efa537a6cf9f88e3ce0f0422d1 +SHA256: 7ca7fea62ab4672bb09d49a0ec3a23d09386cb303f97713f6a4406459ef0a8e0 Section: misc -Size: 10146124 +Size: 7951374 Package: kubectl -Version: 1.7.7-00 -Installed-Size: 70664 +Version: 1.5.3-00 +Installed-Size: 49197 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.7-00_amd64_22e3fbc7a55ca7973eac5de600896827a15de0f750c6b7e37e46a8cb99a971fb.deb +Filename: pool/kubectl_1.5.3-00_amd64_10ffbdd74343d2b8b3ba31adc7eeb37b690badd4ce7f9bfb9a54e86ee05d433d.deb Priority: optional -SHA256: 22e3fbc7a55ca7973eac5de600896827a15de0f750c6b7e37e46a8cb99a971fb +SHA256: 10ffbdd74343d2b8b3ba31adc7eeb37b690badd4ce7f9bfb9a54e86ee05d433d Section: misc -Size: 10143748 +Size: 7950932 Package: kubectl -Version: 1.7.8-00 -Installed-Size: 70672 +Version: 1.5.6-00 +Installed-Size: 49202 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.8-00_amd64_0b904de238294283cbfdfd317664f552766dd974947fa5e0c2f3bd0077331522.deb +Filename: pool/kubectl_1.5.6-00_amd64_aeaf2d825c8426b970c092fc8b0e12d701d6c87ec09027a58244538841ae0ad2.deb Priority: optional -SHA256: 0b904de238294283cbfdfd317664f552766dd974947fa5e0c2f3bd0077331522 +SHA256: aeaf2d825c8426b970c092fc8b0e12d701d6c87ec09027a58244538841ae0ad2 Section: misc -Size: 10133472 +Size: 7954048 Package: kubectl -Version: 1.7.9-00 -Installed-Size: 70672 +Version: 1.5.7-00 +Installed-Size: 49206 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.9-00_amd64_101ff6eb079ebee128ed10f3ff1dcef4d21b094e6d81150c649064ef1454b405.deb +Filename: pool/kubectl_1.5.7-00_amd64_0e7de187eed0ca04d6ef148f617c09c781c7aec28a15140691e60d5878c7b30c.deb Priority: optional -SHA256: 101ff6eb079ebee128ed10f3ff1dcef4d21b094e6d81150c649064ef1454b405 +SHA256: 0e7de187eed0ca04d6ef148f617c09c781c7aec28a15140691e60d5878c7b30c Section: misc -Size: 10141282 +Size: 7952552 Package: kubectl -Version: 1.7.10-00 -Installed-Size: 70672 +Version: 1.6.0-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.10-00_amd64_b725d080205ddf237a4df726dba6c81c9f56d1bc089a530e9f2df0bcd659af3e.deb +Filename: pool/kubectl_1.6.0-00_amd64_a068b847837acec84e1922277dc46f6fee2b0c2f930405ff232cf9ac7e3473e5.deb Priority: optional -SHA256: b725d080205ddf237a4df726dba6c81c9f56d1bc089a530e9f2df0bcd659af3e +SHA256: a068b847837acec84e1922277dc46f6fee2b0c2f930405ff232cf9ac7e3473e5 Section: misc -Size: 10140140 +Size: 9659414 Package: kubectl -Version: 1.7.11-00 -Installed-Size: 70672 +Version: 1.6.1-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.11-00_amd64_ef865d283165d40f85ee77c0ced027fc416f26f8f646d489b5265f33b5a85fd4.deb +Filename: pool/kubectl_1.6.1-00_amd64_b224b79174ff2d1a5ba8db17f67b7284e4e969512506b056cf7f7754fbdccbdc.deb Priority: optional -SHA256: ef865d283165d40f85ee77c0ced027fc416f26f8f646d489b5265f33b5a85fd4 +SHA256: b224b79174ff2d1a5ba8db17f67b7284e4e969512506b056cf7f7754fbdccbdc Section: misc -Size: 10140650 +Size: 9655532 Package: kubectl -Version: 1.7.14-00 -Installed-Size: 70816 +Version: 1.6.2-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.14-00_amd64_dd862ac20277caa52836dfc306dc8119e3141776af1b905afd9e36a81fed46c0.deb +Filename: pool/kubectl_1.6.2-00_amd64_b9d37ee035847c965a21427aa6cc3f61f1a9a6d2c8eee8288d1f8657628930ae.deb Priority: optional -SHA256: dd862ac20277caa52836dfc306dc8119e3141776af1b905afd9e36a81fed46c0 +SHA256: b9d37ee035847c965a21427aa6cc3f61f1a9a6d2c8eee8288d1f8657628930ae Section: misc -Size: 10139582 +Size: 9658826 Package: kubectl -Version: 1.7.15-00 -Installed-Size: 70816 +Version: 1.6.3-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.7.15-00_amd64_29a6ff4fad741a2516e4255402230c3393b98dde6088ebadc74b974e23b142b5.deb +Filename: pool/kubectl_1.6.3-00_amd64_05d48fa118b6538ee2bc0b864aeb09f2cede83990fc8819875f698a5dece0c9b.deb Priority: optional -SHA256: 29a6ff4fad741a2516e4255402230c3393b98dde6088ebadc74b974e23b142b5 +SHA256: 05d48fa118b6538ee2bc0b864aeb09f2cede83990fc8819875f698a5dece0c9b Section: misc -Size: 10138806 +Size: 9656568 Package: kubectl -Version: 1.8.0-00 -Installed-Size: 51058 -Maintainer: Kubernetes Authors +Version: 1.6.4-00 +Installed-Size: 69065 +Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.0-00_amd64_9bd409d2a0300d4b550cd2a7fd2eca6437ea0767805f6fd807912b245ec949ed.deb +Filename: pool/kubectl_1.6.4-00_amd64_fd34da38db241a88a6e95b825139e0df6a627f141ae9ed39f948107a8437935e.deb Priority: optional -SHA256: 9bd409d2a0300d4b550cd2a7fd2eca6437ea0767805f6fd807912b245ec949ed +SHA256: fd34da38db241a88a6e95b825139e0df6a627f141ae9ed39f948107a8437935e Section: misc -Size: 8600372 +Size: 9658688 Package: kubectl -Version: 1.8.1-00 -Installed-Size: 51067 +Version: 1.6.5-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.1-00_amd64_c87f3e1e54ad045af07001028282f9b76e1c26425f6ccaeba52bb0a5fa93a6b9.deb +Filename: pool/kubectl_1.6.5-00_amd64_c87736ba4285ed607853a585faa0b6fe591454f0b0ba0a2d655ffc88e2c98ee6.deb Priority: optional -SHA256: c87f3e1e54ad045af07001028282f9b76e1c26425f6ccaeba52bb0a5fa93a6b9 +SHA256: c87736ba4285ed607853a585faa0b6fe591454f0b0ba0a2d655ffc88e2c98ee6 Section: misc -Size: 8603448 +Size: 9659470 Package: kubectl -Version: 1.8.2-00 -Installed-Size: 51062 +Version: 1.6.6-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.2-00_amd64_b01f6fa567e98752181a3ad057275851e00aa5fa1a8db6eb5a6d81c0f499e1ec.deb +Filename: pool/kubectl_1.6.6-00_amd64_671ee06fc52fb9298990a3f5044033df14a6dc542cc1eee1349fb8b111e83992.deb Priority: optional -SHA256: b01f6fa567e98752181a3ad057275851e00aa5fa1a8db6eb5a6d81c0f499e1ec +SHA256: 671ee06fc52fb9298990a3f5044033df14a6dc542cc1eee1349fb8b111e83992 Section: misc -Size: 8609080 +Size: 9660046 Package: kubectl -Version: 1.8.3-00 -Installed-Size: 51062 +Version: 1.6.7-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.3-00_amd64_4ea956fb6586472bfec46f099ad34fa83585969bcfaf2ff995dd66570f824a8b.deb +Filename: pool/kubectl_1.6.7-00_amd64_3137dc28aeb6a9dd364750d4c8d38581926fa45a2273ac5f6b6319aa5b1a4481.deb Priority: optional -SHA256: 4ea956fb6586472bfec46f099ad34fa83585969bcfaf2ff995dd66570f824a8b +SHA256: 3137dc28aeb6a9dd364750d4c8d38581926fa45a2273ac5f6b6319aa5b1a4481 Section: misc -Size: 8612728 +Size: 9655070 Package: kubectl -Version: 1.8.4-00 -Installed-Size: 51125 +Version: 1.6.8-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.4-00_amd64_b48511a481ddcfbf935ad935bc6c3992c1c4315fcd8f3f794e367b9b26b775be.deb +Filename: pool/kubectl_1.6.8-00_amd64_0aa203bad55d821a0729009bb1436618b70eafe4549f3178f02b1cd11b2fca83.deb Priority: optional -SHA256: b48511a481ddcfbf935ad935bc6c3992c1c4315fcd8f3f794e367b9b26b775be +SHA256: 0aa203bad55d821a0729009bb1436618b70eafe4549f3178f02b1cd11b2fca83 Section: misc -Size: 8611520 +Size: 9659914 Package: kubectl -Version: 1.8.5-00 -Installed-Size: 51125 +Version: 1.6.9-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.5-00_amd64_b9f161f02571cb379cfc93ed5a95e84b68b259cbc92d2f8291a5be3a6970ae37.deb +Filename: pool/kubectl_1.6.9-00_amd64_c6ea792bb752621b2af1c00f5bb56686df831bcd9b2ef4a5e090383fc4004656.deb Priority: optional -SHA256: b9f161f02571cb379cfc93ed5a95e84b68b259cbc92d2f8291a5be3a6970ae37 +SHA256: c6ea792bb752621b2af1c00f5bb56686df831bcd9b2ef4a5e090383fc4004656 Section: misc -Size: 8614054 +Size: 9656488 Package: kubectl -Version: 1.8.6-00 -Installed-Size: 51125 +Version: 1.6.10-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.6-00_amd64_bc0fe25db6363a762821ec2460be64c6fe66e857210eafc45289f25ea92b1408.deb +Filename: pool/kubectl_1.6.10-00_amd64_2ed0f68b0a1e8257fd363bb35de28b29be3ec086dacea066790fa00fdf4a0e74.deb Priority: optional -SHA256: bc0fe25db6363a762821ec2460be64c6fe66e857210eafc45289f25ea92b1408 +SHA256: 2ed0f68b0a1e8257fd363bb35de28b29be3ec086dacea066790fa00fdf4a0e74 Section: misc -Size: 8612722 +Size: 9659948 Package: kubectl -Version: 1.8.7-00 -Installed-Size: 51275 +Version: 1.6.11-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.7-00_amd64_7c6fa8b9de95ec7585b6af78997fa427c19e224a66b0da08cc4e76954c0bf700.deb +Filename: pool/kubectl_1.6.11-00_amd64_0049f491da3c6d5826d5cc0862a84da361daf3c356fddb507746891f456e4bac.deb Priority: optional -SHA256: 7c6fa8b9de95ec7585b6af78997fa427c19e224a66b0da08cc4e76954c0bf700 +SHA256: 0049f491da3c6d5826d5cc0862a84da361daf3c356fddb507746891f456e4bac Section: misc -Size: 8621148 +Size: 9661276 Package: kubectl -Version: 1.8.8-00 -Installed-Size: 51279 +Version: 1.6.12-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.8-00_amd64_1a766866712f71c62ad30e6a247d13fab7eefe6eb3335a683b7697733bf36652.deb +Filename: pool/kubectl_1.6.12-00_amd64_54410fc4e429df54df34b406b2515cdb3043b11f14ab87ab522f54a6a4e10e92.deb Priority: optional -SHA256: 1a766866712f71c62ad30e6a247d13fab7eefe6eb3335a683b7697733bf36652 +SHA256: 54410fc4e429df54df34b406b2515cdb3043b11f14ab87ab522f54a6a4e10e92 Section: misc -Size: 8617086 +Size: 9657018 Package: kubectl -Version: 1.8.9-00 -Installed-Size: 51284 +Version: 1.6.13-00 +Installed-Size: 69065 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.9-00_amd64_5f045afdadb2b6253721343febd5cddf7bb98f40935439e427f9a2df0e96cf21.deb +Filename: pool/kubectl_1.6.13-00_amd64_a2c7e0339dccaecf28740a2e8ac3f953c45f770db4a7f68003f99fcd7fdceb42.deb Priority: optional -SHA256: 5f045afdadb2b6253721343febd5cddf7bb98f40935439e427f9a2df0e96cf21 +SHA256: a2c7e0339dccaecf28740a2e8ac3f953c45f770db4a7f68003f99fcd7fdceb42 Section: misc -Size: 8622264 +Size: 9658034 Package: kubectl -Version: 1.8.10-00 -Installed-Size: 51288 +Version: 1.7.0-00 +Installed-Size: 70701 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.10-00_amd64_4ece6cd7ef9bff0e1d2b6bb9c30b40a500133e9b1cb4dae778edca1d4a5bec44.deb +Filename: pool/kubectl_1.7.0-00_amd64_6bd51a1ed15eb74ad2d72823a301c71e769dcc12ec10294eac3026cb77e03860.deb Priority: optional -SHA256: 4ece6cd7ef9bff0e1d2b6bb9c30b40a500133e9b1cb4dae778edca1d4a5bec44 +SHA256: 6bd51a1ed15eb74ad2d72823a301c71e769dcc12ec10294eac3026cb77e03860 Section: misc -Size: 8618596 +Size: 10145062 Package: kubectl -Version: 1.8.11-00 -Installed-Size: 51288 +Version: 1.7.1-00 +Installed-Size: 70701 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.11-00_amd64_86ab3ffd7dece91a755136b67d40eb4d9ea2ec1404d91377d079833c31d647e1.deb +Filename: pool/kubectl_1.7.1-00_amd64_7f6d0471be6524d0d0aec8e9f515e0261a8e364d4fd2f25f22cba4895634bab0.deb Priority: optional -SHA256: 86ab3ffd7dece91a755136b67d40eb4d9ea2ec1404d91377d079833c31d647e1 +SHA256: 7f6d0471be6524d0d0aec8e9f515e0261a8e364d4fd2f25f22cba4895634bab0 Section: misc -Size: 8618890 +Size: 10150588 Package: kubectl -Version: 1.8.12-00 -Installed-Size: 51288 +Version: 1.7.2-00 +Installed-Size: 70659 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.12-00_amd64_894345a819f1c6a86d411be6240f63d5c9ea69eea2505fae05e642272a9c6a19.deb +Filename: pool/kubectl_1.7.2-00_amd64_cd4dec0c4d75f1553712543c03720c3fede37ff8a46b97f287d7f4bea58f36c6.deb Priority: optional -SHA256: 894345a819f1c6a86d411be6240f63d5c9ea69eea2505fae05e642272a9c6a19 +SHA256: cd4dec0c4d75f1553712543c03720c3fede37ff8a46b97f287d7f4bea58f36c6 Section: misc -Size: 8615840 +Size: 10128282 Package: kubectl -Version: 1.8.13-00 -Installed-Size: 51288 +Version: 1.7.3-01 +Installed-Size: 70659 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.13-00_amd64_828ddd59b708e767ee49b866d231af2932412a64f5be69ed8602e2ae341c8a82.deb +Filename: pool/kubectl_1.7.3-01_amd64_84173e3f104760b832ddf732bf02f1834cbf719032746518a52efcc942dba4c6.deb Priority: optional -SHA256: 828ddd59b708e767ee49b866d231af2932412a64f5be69ed8602e2ae341c8a82 +SHA256: 84173e3f104760b832ddf732bf02f1834cbf719032746518a52efcc942dba4c6 Section: misc -Size: 8619362 +Size: 10132298 Package: kubectl -Version: 1.8.14-00 -Installed-Size: 51288 +Version: 1.7.4-00 +Installed-Size: 70659 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.14-00_amd64_42f4fd1ba6f389672c6a388aab0617d097a92eb41e578c4eadf59b2a755eeb1e.deb +Filename: pool/kubectl_1.7.4-00_amd64_6ee4015eabaa1e0cd4e2895c102c1c341f1c0037b28cb7700424d0f6f04a2416.deb Priority: optional -SHA256: 42f4fd1ba6f389672c6a388aab0617d097a92eb41e578c4eadf59b2a755eeb1e +SHA256: 6ee4015eabaa1e0cd4e2895c102c1c341f1c0037b28cb7700424d0f6f04a2416 Section: misc -Size: 8620424 +Size: 10125896 Package: kubectl -Version: 1.8.15-00 -Installed-Size: 52053 +Version: 1.7.5-00 +Installed-Size: 70659 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.8.15-00_amd64_28d815300cfca34fcfe509ce5afcfbb76ba939405182a01524ea851b01344ea3.deb +Filename: pool/kubectl_1.7.5-00_amd64_363445c3be161e924d1209c60e24dd2d0657d68bcf7c17e8ec2a6dc603c5d363.deb Priority: optional -SHA256: 28d815300cfca34fcfe509ce5afcfbb76ba939405182a01524ea851b01344ea3 +SHA256: 363445c3be161e924d1209c60e24dd2d0657d68bcf7c17e8ec2a6dc603c5d363 Section: misc -Size: 8716464 +Size: 10133546 Package: kubectl -Version: 1.9.0-00 -Installed-Size: 65829 +Version: 1.7.6-00 +Installed-Size: 70664 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.0-00_amd64_8ea712c18d89d56090c8753a9630d22fd8ae5cb03d4ec79a1fe6d262c8b4eb36.deb +Filename: pool/kubectl_1.7.6-00_amd64_a8c59bb8105f119061ed368451923465351488efa537a6cf9f88e3ce0f0422d1.deb Priority: optional -SHA256: 8ea712c18d89d56090c8753a9630d22fd8ae5cb03d4ec79a1fe6d262c8b4eb36 +SHA256: a8c59bb8105f119061ed368451923465351488efa537a6cf9f88e3ce0f0422d1 Section: misc -Size: 10538152 +Size: 10146124 Package: kubectl -Version: 1.9.1-00 -Installed-Size: 65829 +Version: 1.7.7-00 +Installed-Size: 70664 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.1-00_amd64_bdfb1ad90e0f02a7ae614502079a87ed99209679bdedf0c62873564c186c9f99.deb +Filename: pool/kubectl_1.7.7-00_amd64_22e3fbc7a55ca7973eac5de600896827a15de0f750c6b7e37e46a8cb99a971fb.deb Priority: optional -SHA256: bdfb1ad90e0f02a7ae614502079a87ed99209679bdedf0c62873564c186c9f99 +SHA256: 22e3fbc7a55ca7973eac5de600896827a15de0f750c6b7e37e46a8cb99a971fb Section: misc -Size: 10540496 +Size: 10143748 Package: kubectl -Version: 1.9.2-00 -Installed-Size: 65829 +Version: 1.7.8-00 +Installed-Size: 70672 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.2-00_amd64_a9d5a970c989cb1f77c30c5d27f611cab58659751005e7052541540dca19855c.deb +Filename: pool/kubectl_1.7.8-00_amd64_0b904de238294283cbfdfd317664f552766dd974947fa5e0c2f3bd0077331522.deb Priority: optional -SHA256: a9d5a970c989cb1f77c30c5d27f611cab58659751005e7052541540dca19855c +SHA256: 0b904de238294283cbfdfd317664f552766dd974947fa5e0c2f3bd0077331522 Section: misc -Size: 10537062 +Size: 10133472 Package: kubectl -Version: 1.9.3-00 -Installed-Size: 65828 +Version: 1.7.9-00 +Installed-Size: 70672 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.3-00_amd64_bf9b3256304edcd2f4bd85b74857dacfe6796bec548e1411ed6f93350dd01316.deb +Filename: pool/kubectl_1.7.9-00_amd64_101ff6eb079ebee128ed10f3ff1dcef4d21b094e6d81150c649064ef1454b405.deb Priority: optional -SHA256: bf9b3256304edcd2f4bd85b74857dacfe6796bec548e1411ed6f93350dd01316 +SHA256: 101ff6eb079ebee128ed10f3ff1dcef4d21b094e6d81150c649064ef1454b405 Section: misc -Size: 10539730 +Size: 10141282 Package: kubectl -Version: 1.9.4-00 -Installed-Size: 65991 +Version: 1.7.10-00 +Installed-Size: 70672 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.4-00_amd64_0f814c1c7d852379aa61744ed119518558a0f0cfa1a6e36e8fc2037bd023dad4.deb +Filename: pool/kubectl_1.7.10-00_amd64_b725d080205ddf237a4df726dba6c81c9f56d1bc089a530e9f2df0bcd659af3e.deb Priority: optional -SHA256: 0f814c1c7d852379aa61744ed119518558a0f0cfa1a6e36e8fc2037bd023dad4 +SHA256: b725d080205ddf237a4df726dba6c81c9f56d1bc089a530e9f2df0bcd659af3e Section: misc -Size: 10543002 +Size: 10140140 Package: kubectl -Version: 1.9.5-00 -Installed-Size: 65991 +Version: 1.7.11-00 +Installed-Size: 70672 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.5-00_amd64_fc4313ac6797482c4ece18c14ba2ad2c46bb6bed4b4e9e5c1ee30f64c31ff13d.deb +Filename: pool/kubectl_1.7.11-00_amd64_ef865d283165d40f85ee77c0ced027fc416f26f8f646d489b5265f33b5a85fd4.deb Priority: optional -SHA256: fc4313ac6797482c4ece18c14ba2ad2c46bb6bed4b4e9e5c1ee30f64c31ff13d +SHA256: ef865d283165d40f85ee77c0ced027fc416f26f8f646d489b5265f33b5a85fd4 Section: misc -Size: 10542258 +Size: 10140650 Package: kubectl -Version: 1.9.6-00 -Installed-Size: 65991 +Version: 1.7.14-00 +Installed-Size: 70816 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.6-00_amd64_8f3805e25732ca6ecc12e2751932130a5131adb605691b85e06c6204a0b6326f.deb +Filename: pool/kubectl_1.7.14-00_amd64_dd862ac20277caa52836dfc306dc8119e3141776af1b905afd9e36a81fed46c0.deb Priority: optional -SHA256: 8f3805e25732ca6ecc12e2751932130a5131adb605691b85e06c6204a0b6326f +SHA256: dd862ac20277caa52836dfc306dc8119e3141776af1b905afd9e36a81fed46c0 Section: misc -Size: 10541840 +Size: 10139582 Package: kubectl -Version: 1.9.7-00 -Installed-Size: 65995 +Version: 1.7.15-00 +Installed-Size: 70816 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.7-00_amd64_c532c2abf3344a081d16fc69253c470f1e22c39350b6778dec2f73bb88eaa941.deb +Filename: pool/kubectl_1.7.15-00_amd64_29a6ff4fad741a2516e4255402230c3393b98dde6088ebadc74b974e23b142b5.deb Priority: optional -SHA256: c532c2abf3344a081d16fc69253c470f1e22c39350b6778dec2f73bb88eaa941 +SHA256: 29a6ff4fad741a2516e4255402230c3393b98dde6088ebadc74b974e23b142b5 Section: misc -Size: 10542432 +Size: 10138806 Package: kubectl -Version: 1.9.8-00 -Installed-Size: 65991 +Version: 1.8.0-00 +Installed-Size: 51058 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.8-00_amd64_46aefae6d33ea6e9ac78c858e150b4f92e3c22f831ce0f0614b405a277548da3.deb +Filename: pool/kubectl_1.8.0-00_amd64_9bd409d2a0300d4b550cd2a7fd2eca6437ea0767805f6fd807912b245ec949ed.deb Priority: optional -SHA256: 46aefae6d33ea6e9ac78c858e150b4f92e3c22f831ce0f0614b405a277548da3 +SHA256: 9bd409d2a0300d4b550cd2a7fd2eca6437ea0767805f6fd807912b245ec949ed Section: misc -Size: 10540974 +Size: 8600372 Package: kubectl -Version: 1.9.9-00 -Installed-Size: 66770 +Version: 1.8.1-00 +Installed-Size: 51067 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.9-00_amd64_92a8bc50dd5047989a98fdf268fd9a08e7590361658e93a28c30ab03b54bf7d6.deb +Filename: pool/kubectl_1.8.1-00_amd64_c87f3e1e54ad045af07001028282f9b76e1c26425f6ccaeba52bb0a5fa93a6b9.deb Priority: optional -SHA256: 92a8bc50dd5047989a98fdf268fd9a08e7590361658e93a28c30ab03b54bf7d6 +SHA256: c87f3e1e54ad045af07001028282f9b76e1c26425f6ccaeba52bb0a5fa93a6b9 Section: misc -Size: 10640192 +Size: 8603448 Package: kubectl -Version: 1.9.10-00 -Installed-Size: 66778 +Version: 1.8.2-00 +Installed-Size: 51062 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.10-00_amd64_6f885fb1eb44245ed655a867d8590db0e448e9085a292fbd0a2fea505c7b18ba.deb +Filename: pool/kubectl_1.8.2-00_amd64_b01f6fa567e98752181a3ad057275851e00aa5fa1a8db6eb5a6d81c0f499e1ec.deb Priority: optional -SHA256: 6f885fb1eb44245ed655a867d8590db0e448e9085a292fbd0a2fea505c7b18ba +SHA256: b01f6fa567e98752181a3ad057275851e00aa5fa1a8db6eb5a6d81c0f499e1ec Section: misc -Size: 10637898 +Size: 8609080 Package: kubectl -Version: 1.9.11-00 -Installed-Size: 66790 +Version: 1.8.3-00 +Installed-Size: 51062 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.9.11-00_amd64_51ff00ecaba11907484ac957a443c4d78e35fc42d476e905e999e96b7f1f422f.deb +Filename: pool/kubectl_1.8.3-00_amd64_4ea956fb6586472bfec46f099ad34fa83585969bcfaf2ff995dd66570f824a8b.deb Priority: optional -SHA256: 51ff00ecaba11907484ac957a443c4d78e35fc42d476e905e999e96b7f1f422f +SHA256: 4ea956fb6586472bfec46f099ad34fa83585969bcfaf2ff995dd66570f824a8b Section: misc -Size: 10636968 +Size: 8612728 Package: kubectl -Version: 1.10.0-00 -Installed-Size: 53023 +Version: 1.8.4-00 +Installed-Size: 51125 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.0-00_amd64_e391c19fa377b84587676c5577222ceb5d8fcbde442c79a9cd55d1f344293834.deb +Filename: pool/kubectl_1.8.4-00_amd64_b48511a481ddcfbf935ad935bc6c3992c1c4315fcd8f3f794e367b9b26b775be.deb Priority: optional -SHA256: e391c19fa377b84587676c5577222ceb5d8fcbde442c79a9cd55d1f344293834 +SHA256: b48511a481ddcfbf935ad935bc6c3992c1c4315fcd8f3f794e367b9b26b775be Section: misc -Size: 8904594 +Size: 8611520 Package: kubectl -Version: 1.10.1-00 -Installed-Size: 53023 +Version: 1.8.5-00 +Installed-Size: 51125 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.1-00_amd64_a0d873581d1de51178e88938df4fc968fab57d8e0ecf3b9c211829e673f98ace.deb +Filename: pool/kubectl_1.8.5-00_amd64_b9f161f02571cb379cfc93ed5a95e84b68b259cbc92d2f8291a5be3a6970ae37.deb Priority: optional -SHA256: a0d873581d1de51178e88938df4fc968fab57d8e0ecf3b9c211829e673f98ace +SHA256: b9f161f02571cb379cfc93ed5a95e84b68b259cbc92d2f8291a5be3a6970ae37 Section: misc -Size: 8906124 +Size: 8614054 Package: kubectl -Version: 1.10.2-00 -Installed-Size: 53031 +Version: 1.8.6-00 +Installed-Size: 51125 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.2-00_amd64_a3ca21b1875a20567024584f18ec6aca390e8be8a8d92e20b5b7258452e419c9.deb +Filename: pool/kubectl_1.8.6-00_amd64_bc0fe25db6363a762821ec2460be64c6fe66e857210eafc45289f25ea92b1408.deb Priority: optional -SHA256: a3ca21b1875a20567024584f18ec6aca390e8be8a8d92e20b5b7258452e419c9 +SHA256: bc0fe25db6363a762821ec2460be64c6fe66e857210eafc45289f25ea92b1408 Section: misc -Size: 8909072 +Size: 8612722 Package: kubectl -Version: 1.10.3-00 -Installed-Size: 53023 +Version: 1.8.7-00 +Installed-Size: 51275 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.3-00_amd64_ad1b331006db395c716364b3049739b0f65caa531ba24585dc15f4009eb48bef.deb +Filename: pool/kubectl_1.8.7-00_amd64_7c6fa8b9de95ec7585b6af78997fa427c19e224a66b0da08cc4e76954c0bf700.deb Priority: optional -SHA256: ad1b331006db395c716364b3049739b0f65caa531ba24585dc15f4009eb48bef +SHA256: 7c6fa8b9de95ec7585b6af78997fa427c19e224a66b0da08cc4e76954c0bf700 Section: misc -Size: 8907084 +Size: 8621148 Package: kubectl -Version: 1.10.4-00 -Installed-Size: 53053 +Version: 1.8.8-00 +Installed-Size: 51279 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.4-00_amd64_5984dc4ad9713ff8a548d8292717b8f7060896e887a96f2d800a144fd70267f5.deb +Filename: pool/kubectl_1.8.8-00_amd64_1a766866712f71c62ad30e6a247d13fab7eefe6eb3335a683b7697733bf36652.deb Priority: optional -SHA256: 5984dc4ad9713ff8a548d8292717b8f7060896e887a96f2d800a144fd70267f5 +SHA256: 1a766866712f71c62ad30e6a247d13fab7eefe6eb3335a683b7697733bf36652 Section: misc -Size: 8911880 +Size: 8617086 Package: kubectl -Version: 1.10.5-00 -Installed-Size: 53810 +Version: 1.8.9-00 +Installed-Size: 51284 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.5-00_amd64_76a98e003a46be66d802b5c79ba11fdc6f10463e524e67db02db1684fd9dad8e.deb +Filename: pool/kubectl_1.8.9-00_amd64_5f045afdadb2b6253721343febd5cddf7bb98f40935439e427f9a2df0e96cf21.deb Priority: optional -SHA256: 76a98e003a46be66d802b5c79ba11fdc6f10463e524e67db02db1684fd9dad8e +SHA256: 5f045afdadb2b6253721343febd5cddf7bb98f40935439e427f9a2df0e96cf21 Section: misc -Size: 9005950 +Size: 8622264 Package: kubectl -Version: 1.10.6-00 -Installed-Size: 53810 +Version: 1.8.10-00 +Installed-Size: 51288 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.6-00_amd64_d258552fb68beb8896ebcb854b31464fd0f80819bdc7943c9ad4e88e88adc7ee.deb +Filename: pool/kubectl_1.8.10-00_amd64_4ece6cd7ef9bff0e1d2b6bb9c30b40a500133e9b1cb4dae778edca1d4a5bec44.deb Priority: optional -SHA256: d258552fb68beb8896ebcb854b31464fd0f80819bdc7943c9ad4e88e88adc7ee +SHA256: 4ece6cd7ef9bff0e1d2b6bb9c30b40a500133e9b1cb4dae778edca1d4a5bec44 Section: misc -Size: 9006114 +Size: 8618596 Package: kubectl -Version: 1.10.7-00 -Installed-Size: 53815 +Version: 1.8.11-00 +Installed-Size: 51288 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.7-00_amd64_52542710044cb4ad30def799dc4392d18a56cd6f2dc0d675825a085d0b2882f1.deb +Filename: pool/kubectl_1.8.11-00_amd64_86ab3ffd7dece91a755136b67d40eb4d9ea2ec1404d91377d079833c31d647e1.deb Priority: optional -SHA256: 52542710044cb4ad30def799dc4392d18a56cd6f2dc0d675825a085d0b2882f1 +SHA256: 86ab3ffd7dece91a755136b67d40eb4d9ea2ec1404d91377d079833c31d647e1 Section: misc -Size: 9004744 +Size: 8618890 Package: kubectl -Version: 1.10.8-00 -Installed-Size: 53815 +Version: 1.8.12-00 +Installed-Size: 51288 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.8-00_amd64_ef17dfbb5de2b0a96d2988381a3c049a450ecf1ced1664c5bf6785375a6910ff.deb +Filename: pool/kubectl_1.8.12-00_amd64_894345a819f1c6a86d411be6240f63d5c9ea69eea2505fae05e642272a9c6a19.deb Priority: optional -SHA256: ef17dfbb5de2b0a96d2988381a3c049a450ecf1ced1664c5bf6785375a6910ff +SHA256: 894345a819f1c6a86d411be6240f63d5c9ea69eea2505fae05e642272a9c6a19 Section: misc -Size: 9004250 +Size: 8615840 Package: kubectl -Version: 1.10.9-00 -Installed-Size: 53815 +Version: 1.8.13-00 +Installed-Size: 51288 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.9-00_amd64_c10c2a2409e1d46047476977b0b5bd95716189873c2a6e77901e46a8d0b2d5da.deb +Filename: pool/kubectl_1.8.13-00_amd64_828ddd59b708e767ee49b866d231af2932412a64f5be69ed8602e2ae341c8a82.deb Priority: optional -SHA256: c10c2a2409e1d46047476977b0b5bd95716189873c2a6e77901e46a8d0b2d5da +SHA256: 828ddd59b708e767ee49b866d231af2932412a64f5be69ed8602e2ae341c8a82 Section: misc -Size: 9009080 +Size: 8619362 Package: kubectl -Version: 1.10.10-00 -Installed-Size: 53815 +Version: 1.8.14-00 +Installed-Size: 51288 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.10-00_amd64_5db60542dc46646b26dc798487fdc1513137695b9403fbf6aa708c4e267e8919.deb +Filename: pool/kubectl_1.8.14-00_amd64_42f4fd1ba6f389672c6a388aab0617d097a92eb41e578c4eadf59b2a755eeb1e.deb Priority: optional -SHA256: 5db60542dc46646b26dc798487fdc1513137695b9403fbf6aa708c4e267e8919 +SHA256: 42f4fd1ba6f389672c6a388aab0617d097a92eb41e578c4eadf59b2a755eeb1e Section: misc -Size: 9005572 +Size: 8620424 Package: kubectl -Version: 1.10.11-00 -Installed-Size: 53815 +Version: 1.8.15-00 +Installed-Size: 52053 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.11-00_amd64_bf2f2f36be03f7e551641e90746f7ad26e72601e01dfee26fca34a1fe8efb02e.deb +Filename: pool/kubectl_1.8.15-00_amd64_28d815300cfca34fcfe509ce5afcfbb76ba939405182a01524ea851b01344ea3.deb Priority: optional -SHA256: bf2f2f36be03f7e551641e90746f7ad26e72601e01dfee26fca34a1fe8efb02e +SHA256: 28d815300cfca34fcfe509ce5afcfbb76ba939405182a01524ea851b01344ea3 Section: misc -Size: 9006804 +Size: 8716464 Package: kubectl -Version: 1.10.12-00 -Installed-Size: 53831 +Version: 1.9.0-00 +Installed-Size: 65829 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.12-00_amd64_b2b75dcd72f73f84cefee2788a0df786a6531b0ea462c753c7f4aaf8dbcced59.deb +Filename: pool/kubectl_1.9.0-00_amd64_8ea712c18d89d56090c8753a9630d22fd8ae5cb03d4ec79a1fe6d262c8b4eb36.deb Priority: optional -SHA256: b2b75dcd72f73f84cefee2788a0df786a6531b0ea462c753c7f4aaf8dbcced59 +SHA256: 8ea712c18d89d56090c8753a9630d22fd8ae5cb03d4ec79a1fe6d262c8b4eb36 Section: misc -Size: 9007636 +Size: 10538152 Package: kubectl -Version: 1.10.13-00 -Installed-Size: 53827 +Version: 1.9.1-00 +Installed-Size: 65829 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.10.13-00_amd64_46d296e9a00d96a4f7a2f64e19e1b8aa846a0fc187bbab7aaf8309478a988b25.deb +Filename: pool/kubectl_1.9.1-00_amd64_bdfb1ad90e0f02a7ae614502079a87ed99209679bdedf0c62873564c186c9f99.deb Priority: optional -SHA256: 46d296e9a00d96a4f7a2f64e19e1b8aa846a0fc187bbab7aaf8309478a988b25 +SHA256: bdfb1ad90e0f02a7ae614502079a87ed99209679bdedf0c62873564c186c9f99 Section: misc -Size: 9010896 +Size: 10540496 Package: kubectl -Version: 1.11.0-00 -Installed-Size: 54140 +Version: 1.9.2-00 +Installed-Size: 65829 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.0-00_amd64_2d3db54de02a65983e028ef5f9391230b8661e31a15f563787463df781b3aa31.deb +Filename: pool/kubectl_1.9.2-00_amd64_a9d5a970c989cb1f77c30c5d27f611cab58659751005e7052541540dca19855c.deb Priority: optional -SHA256: 2d3db54de02a65983e028ef5f9391230b8661e31a15f563787463df781b3aa31 +SHA256: a9d5a970c989cb1f77c30c5d27f611cab58659751005e7052541540dca19855c Section: misc -Size: 9398758 +Size: 10537062 Package: kubectl -Version: 1.11.1-00 -Installed-Size: 54120 +Version: 1.9.3-00 +Installed-Size: 65828 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.1-00_amd64_d5cdd588ae155f60f59a77af17afabdc871b558da506fbe7a4bac894e5ddc023.deb +Filename: pool/kubectl_1.9.3-00_amd64_bf9b3256304edcd2f4bd85b74857dacfe6796bec548e1411ed6f93350dd01316.deb Priority: optional -SHA256: d5cdd588ae155f60f59a77af17afabdc871b558da506fbe7a4bac894e5ddc023 +SHA256: bf9b3256304edcd2f4bd85b74857dacfe6796bec548e1411ed6f93350dd01316 Section: misc -Size: 9387674 +Size: 10539730 Package: kubectl -Version: 1.11.2-00 -Installed-Size: 54120 +Version: 1.9.4-00 +Installed-Size: 65991 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.2-00_amd64_49e2a857e4852da0c27e3e92bc92fef4d33db7c93c2a4628cb9374e3a486bc92.deb +Filename: pool/kubectl_1.9.4-00_amd64_0f814c1c7d852379aa61744ed119518558a0f0cfa1a6e36e8fc2037bd023dad4.deb Priority: optional -SHA256: 49e2a857e4852da0c27e3e92bc92fef4d33db7c93c2a4628cb9374e3a486bc92 +SHA256: 0f814c1c7d852379aa61744ed119518558a0f0cfa1a6e36e8fc2037bd023dad4 Section: misc -Size: 9394168 +Size: 10543002 Package: kubectl -Version: 1.11.3-00 -Installed-Size: 54133 +Version: 1.9.5-00 +Installed-Size: 65991 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.3-00_amd64_36eb4192b3726ce626aca3d8f116487508481f53152191a1e0abe0b91ab8ccb1.deb +Filename: pool/kubectl_1.9.5-00_amd64_fc4313ac6797482c4ece18c14ba2ad2c46bb6bed4b4e9e5c1ee30f64c31ff13d.deb Priority: optional -SHA256: 36eb4192b3726ce626aca3d8f116487508481f53152191a1e0abe0b91ab8ccb1 +SHA256: fc4313ac6797482c4ece18c14ba2ad2c46bb6bed4b4e9e5c1ee30f64c31ff13d Section: misc -Size: 9393422 +Size: 10542258 Package: kubectl -Version: 1.11.4-00 -Installed-Size: 54141 +Version: 1.9.6-00 +Installed-Size: 65991 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.4-00_amd64_fa5c1cf4fed170d958d421486c036ee6bfea14c542a3b4b59f3573050ba1d317.deb +Filename: pool/kubectl_1.9.6-00_amd64_8f3805e25732ca6ecc12e2751932130a5131adb605691b85e06c6204a0b6326f.deb Priority: optional -SHA256: fa5c1cf4fed170d958d421486c036ee6bfea14c542a3b4b59f3573050ba1d317 +SHA256: 8f3805e25732ca6ecc12e2751932130a5131adb605691b85e06c6204a0b6326f Section: misc -Size: 9394718 +Size: 10541840 Package: kubectl -Version: 1.11.5-00 -Installed-Size: 54145 +Version: 1.9.7-00 +Installed-Size: 65995 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.5-00_amd64_d91fb68903b1d778a3c3d9aefd965a476bc50c24ecd6e12c64e24b85b3510eaa.deb +Filename: pool/kubectl_1.9.7-00_amd64_c532c2abf3344a081d16fc69253c470f1e22c39350b6778dec2f73bb88eaa941.deb Priority: optional -SHA256: d91fb68903b1d778a3c3d9aefd965a476bc50c24ecd6e12c64e24b85b3510eaa +SHA256: c532c2abf3344a081d16fc69253c470f1e22c39350b6778dec2f73bb88eaa941 Section: misc -Size: 9391092 +Size: 10542432 Package: kubectl -Version: 1.11.6-00 -Installed-Size: 54163 +Version: 1.9.8-00 +Installed-Size: 65991 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.6-00_amd64_edf916789809222ad40b5ead1d23a94522833c5792569cf76e30f1805196a712.deb +Filename: pool/kubectl_1.9.8-00_amd64_46aefae6d33ea6e9ac78c858e150b4f92e3c22f831ce0f0614b405a277548da3.deb Priority: optional -SHA256: edf916789809222ad40b5ead1d23a94522833c5792569cf76e30f1805196a712 +SHA256: 46aefae6d33ea6e9ac78c858e150b4f92e3c22f831ce0f0614b405a277548da3 Section: misc -Size: 9387150 +Size: 10540974 Package: kubectl -Version: 1.11.7-00 -Installed-Size: 54166 +Version: 1.9.9-00 +Installed-Size: 66770 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.7-00_amd64_c690be55439c3d8820c73394796babbe4d47ecb20b1d945d57c3ce08f460a190.deb +Filename: pool/kubectl_1.9.9-00_amd64_92a8bc50dd5047989a98fdf268fd9a08e7590361658e93a28c30ab03b54bf7d6.deb Priority: optional -SHA256: c690be55439c3d8820c73394796babbe4d47ecb20b1d945d57c3ce08f460a190 +SHA256: 92a8bc50dd5047989a98fdf268fd9a08e7590361658e93a28c30ab03b54bf7d6 Section: misc -Size: 9385272 +Size: 10640192 Package: kubectl -Version: 1.11.8-00 -Installed-Size: 54167 +Version: 1.9.10-00 +Installed-Size: 66778 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.8-00_amd64_464b4108119827d9eb3e8a628a16cbfab033637a4212650190342f24ff260fb0.deb +Filename: pool/kubectl_1.9.10-00_amd64_6f885fb1eb44245ed655a867d8590db0e448e9085a292fbd0a2fea505c7b18ba.deb Priority: optional -SHA256: 464b4108119827d9eb3e8a628a16cbfab033637a4212650190342f24ff260fb0 +SHA256: 6f885fb1eb44245ed655a867d8590db0e448e9085a292fbd0a2fea505c7b18ba Section: misc -Size: 9385686 +Size: 10637898 Package: kubectl -Version: 1.11.9-00 -Installed-Size: 54171 -Maintainer: Kubernetes Authors +Version: 1.9.11-00 +Installed-Size: 66790 +Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.9-00_amd64_767549b796f6d09158b5b417475d3f5111e90295f7e41512baae3a30dc78a16b.deb +Filename: pool/kubectl_1.9.11-00_amd64_51ff00ecaba11907484ac957a443c4d78e35fc42d476e905e999e96b7f1f422f.deb Priority: optional -SHA256: 767549b796f6d09158b5b417475d3f5111e90295f7e41512baae3a30dc78a16b +SHA256: 51ff00ecaba11907484ac957a443c4d78e35fc42d476e905e999e96b7f1f422f Section: misc -Size: 9387730 +Size: 10636968 Package: kubectl -Version: 1.11.10-00 -Installed-Size: 54167 +Version: 1.10.0-00 +Installed-Size: 53023 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.11.10-00_amd64_d66a02f63226306fcbb193013174821ea63999dd91a7048fc0613bf4da161efc.deb +Filename: pool/kubectl_1.10.0-00_amd64_e391c19fa377b84587676c5577222ceb5d8fcbde442c79a9cd55d1f344293834.deb Priority: optional -SHA256: d66a02f63226306fcbb193013174821ea63999dd91a7048fc0613bf4da161efc +SHA256: e391c19fa377b84587676c5577222ceb5d8fcbde442c79a9cd55d1f344293834 Section: misc -Size: 9419898 +Size: 8904594 Package: kubectl -Version: 1.12.0-00 -Installed-Size: 56017 +Version: 1.10.1-00 +Installed-Size: 53023 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.0-00_amd64_242af67011dc074d0683131d96c22eb586f44553d0626767f0313d1eb8dc2b9f.deb +Filename: pool/kubectl_1.10.1-00_amd64_a0d873581d1de51178e88938df4fc968fab57d8e0ecf3b9c211829e673f98ace.deb Priority: optional -SHA256: 242af67011dc074d0683131d96c22eb586f44553d0626767f0313d1eb8dc2b9f +SHA256: a0d873581d1de51178e88938df4fc968fab57d8e0ecf3b9c211829e673f98ace Section: misc -Size: 9592406 +Size: 8906124 Package: kubectl -Version: 1.12.1-00 -Installed-Size: 56025 +Version: 1.10.2-00 +Installed-Size: 53031 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.1-00_amd64_f02235e5b8633b589e6f7c39a581b29bef4ea723f52812c152a609302073e5fe.deb +Filename: pool/kubectl_1.10.2-00_amd64_a3ca21b1875a20567024584f18ec6aca390e8be8a8d92e20b5b7258452e419c9.deb Priority: optional -SHA256: f02235e5b8633b589e6f7c39a581b29bef4ea723f52812c152a609302073e5fe +SHA256: a3ca21b1875a20567024584f18ec6aca390e8be8a8d92e20b5b7258452e419c9 Section: misc -Size: 9594410 +Size: 8909072 Package: kubectl -Version: 1.12.2-00 -Installed-Size: 56025 +Version: 1.10.3-00 +Installed-Size: 53023 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.2-00_amd64_ec905f7eb4a579661afdda2122ca8fa63fc46f561afd905e0c6f9eb5ded3671c.deb +Filename: pool/kubectl_1.10.3-00_amd64_ad1b331006db395c716364b3049739b0f65caa531ba24585dc15f4009eb48bef.deb Priority: optional -SHA256: ec905f7eb4a579661afdda2122ca8fa63fc46f561afd905e0c6f9eb5ded3671c +SHA256: ad1b331006db395c716364b3049739b0f65caa531ba24585dc15f4009eb48bef Section: misc -Size: 9599154 +Size: 8907084 Package: kubectl -Version: 1.12.3-00 -Installed-Size: 56029 +Version: 1.10.4-00 +Installed-Size: 53053 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.3-00_amd64_4acbe6dfb3760bb2376f686c5bc9afa99f601329895df6f7cc9712fc81c81723.deb +Filename: pool/kubectl_1.10.4-00_amd64_5984dc4ad9713ff8a548d8292717b8f7060896e887a96f2d800a144fd70267f5.deb Priority: optional -SHA256: 4acbe6dfb3760bb2376f686c5bc9afa99f601329895df6f7cc9712fc81c81723 +SHA256: 5984dc4ad9713ff8a548d8292717b8f7060896e887a96f2d800a144fd70267f5 Section: misc -Size: 9595086 +Size: 8911880 Package: kubectl -Version: 1.12.4-00 -Installed-Size: 56047 +Version: 1.10.5-00 +Installed-Size: 53810 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.4-00_amd64_523056d573555f0a60b4031ff6efd59598eb75210bd35c5dbaad35835e378de8.deb +Filename: pool/kubectl_1.10.5-00_amd64_76a98e003a46be66d802b5c79ba11fdc6f10463e524e67db02db1684fd9dad8e.deb Priority: optional -SHA256: 523056d573555f0a60b4031ff6efd59598eb75210bd35c5dbaad35835e378de8 +SHA256: 76a98e003a46be66d802b5c79ba11fdc6f10463e524e67db02db1684fd9dad8e Section: misc -Size: 9588466 +Size: 9005950 Package: kubectl -Version: 1.12.5-00 -Installed-Size: 56046 +Version: 1.10.6-00 +Installed-Size: 53810 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.5-00_amd64_63227207caf7d58e3bf1583bd4080c81931f7b48b6b6aa24b309a3c2fa2fa3ef.deb +Filename: pool/kubectl_1.10.6-00_amd64_d258552fb68beb8896ebcb854b31464fd0f80819bdc7943c9ad4e88e88adc7ee.deb Priority: optional -SHA256: 63227207caf7d58e3bf1583bd4080c81931f7b48b6b6aa24b309a3c2fa2fa3ef +SHA256: d258552fb68beb8896ebcb854b31464fd0f80819bdc7943c9ad4e88e88adc7ee Section: misc -Size: 9585202 +Size: 9006114 Package: kubectl -Version: 1.12.6-00 -Installed-Size: 56051 +Version: 1.10.7-00 +Installed-Size: 53815 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.6-00_amd64_800332fc8d3a91be2cff5137e63b4e15565f8f980584adf34f00c27f7a2b89cd.deb +Filename: pool/kubectl_1.10.7-00_amd64_52542710044cb4ad30def799dc4392d18a56cd6f2dc0d675825a085d0b2882f1.deb Priority: optional -SHA256: 800332fc8d3a91be2cff5137e63b4e15565f8f980584adf34f00c27f7a2b89cd +SHA256: 52542710044cb4ad30def799dc4392d18a56cd6f2dc0d675825a085d0b2882f1 Section: misc -Size: 9589258 +Size: 9004744 Package: kubectl -Version: 1.12.7-00 -Installed-Size: 56022 +Version: 1.10.8-00 +Installed-Size: 53815 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.7-00_amd64_00dbe2b6f91b1b8beffb1731ca77d5b37efbaebd20f8ef2eb1837bbd4370092c.deb +Filename: pool/kubectl_1.10.8-00_amd64_ef17dfbb5de2b0a96d2988381a3c049a450ecf1ced1664c5bf6785375a6910ff.deb Priority: optional -SHA256: 00dbe2b6f91b1b8beffb1731ca77d5b37efbaebd20f8ef2eb1837bbd4370092c +SHA256: ef17dfbb5de2b0a96d2988381a3c049a450ecf1ced1664c5bf6785375a6910ff Section: misc -Size: 9585536 +Size: 9004250 Package: kubectl -Version: 1.12.8-00 -Installed-Size: 56022 +Version: 1.10.9-00 +Installed-Size: 53815 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.8-00_amd64_a6cbdf22d5cbe7a77784a9dc02797b4365fe9ad05473f96cc9f82cc8f10c2ba1.deb +Filename: pool/kubectl_1.10.9-00_amd64_c10c2a2409e1d46047476977b0b5bd95716189873c2a6e77901e46a8d0b2d5da.deb Priority: optional -SHA256: a6cbdf22d5cbe7a77784a9dc02797b4365fe9ad05473f96cc9f82cc8f10c2ba1 +SHA256: c10c2a2409e1d46047476977b0b5bd95716189873c2a6e77901e46a8d0b2d5da Section: misc -Size: 9587390 +Size: 9009080 Package: kubectl -Version: 1.12.9-00 -Installed-Size: 56023 +Version: 1.10.10-00 +Installed-Size: 53815 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.9-00_amd64_b3b61921a3e8bbe955b5c882f3d910fcda092a44a78db4eacc139a1869b57678.deb +Filename: pool/kubectl_1.10.10-00_amd64_5db60542dc46646b26dc798487fdc1513137695b9403fbf6aa708c4e267e8919.deb Priority: optional -SHA256: b3b61921a3e8bbe955b5c882f3d910fcda092a44a78db4eacc139a1869b57678 +SHA256: 5db60542dc46646b26dc798487fdc1513137695b9403fbf6aa708c4e267e8919 Section: misc -Size: 9643236 +Size: 9005572 Package: kubectl -Version: 1.12.10-00 -Installed-Size: 56023 +Version: 1.10.11-00 +Installed-Size: 53815 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.12.10-00_amd64_896bcfcacec129e50e5dcf6121ae5c32ff6b53c3fc4c5a082226d74b5fbfb0c5.deb +Filename: pool/kubectl_1.10.11-00_amd64_bf2f2f36be03f7e551641e90746f7ad26e72601e01dfee26fca34a1fe8efb02e.deb Priority: optional -SHA256: 896bcfcacec129e50e5dcf6121ae5c32ff6b53c3fc4c5a082226d74b5fbfb0c5 +SHA256: bf2f2f36be03f7e551641e90746f7ad26e72601e01dfee26fca34a1fe8efb02e Section: misc -Size: 9639146 +Size: 9006804 Package: kubectl -Version: 1.13.0-00 -Installed-Size: 38313 +Version: 1.10.12-00 +Installed-Size: 53831 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.0-00_amd64_6e20e10266a9e0698489555a822c13af97e3a5d815fdea17a36995152550ab74.deb +Filename: pool/kubectl_1.10.12-00_amd64_b2b75dcd72f73f84cefee2788a0df786a6531b0ea462c753c7f4aaf8dbcced59.deb Priority: optional -SHA256: 6e20e10266a9e0698489555a822c13af97e3a5d815fdea17a36995152550ab74 +SHA256: b2b75dcd72f73f84cefee2788a0df786a6531b0ea462c753c7f4aaf8dbcced59 Section: misc -Size: 7841228 +Size: 9007636 Package: kubectl -Version: 1.13.1-00 -Installed-Size: 38321 +Version: 1.10.13-00 +Installed-Size: 53827 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.1-00_amd64_85ea781848ea3e9aff07cec72aaa3a0fdddafeaf2a969e8f3f29c0778b442faa.deb +Filename: pool/kubectl_1.10.13-00_amd64_46d296e9a00d96a4f7a2f64e19e1b8aa846a0fc187bbab7aaf8309478a988b25.deb Priority: optional -SHA256: 85ea781848ea3e9aff07cec72aaa3a0fdddafeaf2a969e8f3f29c0778b442faa +SHA256: 46d296e9a00d96a4f7a2f64e19e1b8aa846a0fc187bbab7aaf8309478a988b25 Section: misc -Size: 7842736 +Size: 9010896 Package: kubectl -Version: 1.13.2-00 -Installed-Size: 38349 +Version: 1.11.0-00 +Installed-Size: 54140 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.2-00_amd64_fedd83bfb3726db0ad367bc0183fa5d32ecbf30bb806963cd0c027bf2b794b0a.deb +Filename: pool/kubectl_1.11.0-00_amd64_2d3db54de02a65983e028ef5f9391230b8661e31a15f563787463df781b3aa31.deb Priority: optional -SHA256: fedd83bfb3726db0ad367bc0183fa5d32ecbf30bb806963cd0c027bf2b794b0a +SHA256: 2d3db54de02a65983e028ef5f9391230b8661e31a15f563787463df781b3aa31 Section: misc -Size: 7847130 +Size: 9398758 Package: kubectl -Version: 1.13.3-00 -Installed-Size: 38349 +Version: 1.11.1-00 +Installed-Size: 54120 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.3-00_amd64_f8ac822c2fef60a2bc13fcb68ecd786f735c1e76e1fa02cd932f339ccb5cecd1.deb +Filename: pool/kubectl_1.11.1-00_amd64_d5cdd588ae155f60f59a77af17afabdc871b558da506fbe7a4bac894e5ddc023.deb Priority: optional -SHA256: f8ac822c2fef60a2bc13fcb68ecd786f735c1e76e1fa02cd932f339ccb5cecd1 +SHA256: d5cdd588ae155f60f59a77af17afabdc871b558da506fbe7a4bac894e5ddc023 Section: misc -Size: 7851670 +Size: 9387674 Package: kubectl -Version: 1.13.4-00 -Installed-Size: 38349 +Version: 1.11.2-00 +Installed-Size: 54120 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.4-00_amd64_40eeb57411431e9c317002357210d2231268bd9b5bd886ad1246459481d549e5.deb +Filename: pool/kubectl_1.11.2-00_amd64_49e2a857e4852da0c27e3e92bc92fef4d33db7c93c2a4628cb9374e3a486bc92.deb Priority: optional -SHA256: 40eeb57411431e9c317002357210d2231268bd9b5bd886ad1246459481d549e5 +SHA256: 49e2a857e4852da0c27e3e92bc92fef4d33db7c93c2a4628cb9374e3a486bc92 Section: misc -Size: 7858366 +Size: 9394168 Package: kubectl -Version: 1.13.5-00 -Installed-Size: 38337 +Version: 1.11.3-00 +Installed-Size: 54133 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.5-00_amd64_c1285f382497a45307c184aba77afe41e3200d6109ccd9cd9852800302f5495f.deb +Filename: pool/kubectl_1.11.3-00_amd64_36eb4192b3726ce626aca3d8f116487508481f53152191a1e0abe0b91ab8ccb1.deb Priority: optional -SHA256: c1285f382497a45307c184aba77afe41e3200d6109ccd9cd9852800302f5495f +SHA256: 36eb4192b3726ce626aca3d8f116487508481f53152191a1e0abe0b91ab8ccb1 Section: misc -Size: 7852208 +Size: 9393422 Package: kubectl -Version: 1.13.6-00 -Installed-Size: 38337 +Version: 1.11.4-00 +Installed-Size: 54141 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.6-00_amd64_b70158dbf1083f5f630e48a7ce84ee4ac9df3305ef4c5b56357ef134bbf85b51.deb +Filename: pool/kubectl_1.11.4-00_amd64_fa5c1cf4fed170d958d421486c036ee6bfea14c542a3b4b59f3573050ba1d317.deb Priority: optional -SHA256: b70158dbf1083f5f630e48a7ce84ee4ac9df3305ef4c5b56357ef134bbf85b51 +SHA256: fa5c1cf4fed170d958d421486c036ee6bfea14c542a3b4b59f3573050ba1d317 Section: misc -Size: 7862274 +Size: 9394718 Package: kubectl -Version: 1.13.7-00 -Installed-Size: 38337 +Version: 1.11.5-00 +Installed-Size: 54145 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.7-00_amd64_a93591488a26f891e03f3d083f064f531e27975418147b0d8e739d6cdc803b6c.deb +Filename: pool/kubectl_1.11.5-00_amd64_d91fb68903b1d778a3c3d9aefd965a476bc50c24ecd6e12c64e24b85b3510eaa.deb Priority: optional -SHA256: a93591488a26f891e03f3d083f064f531e27975418147b0d8e739d6cdc803b6c +SHA256: d91fb68903b1d778a3c3d9aefd965a476bc50c24ecd6e12c64e24b85b3510eaa Section: misc -Size: 7861348 +Size: 9391092 Package: kubectl -Version: 1.13.8-00 -Installed-Size: 38337 +Version: 1.11.6-00 +Installed-Size: 54163 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.8-00_amd64_b51dcc633407547c4d92e53ca7685b8890b9b8a69a73b3cf363f59764f302767.deb +Filename: pool/kubectl_1.11.6-00_amd64_edf916789809222ad40b5ead1d23a94522833c5792569cf76e30f1805196a712.deb Priority: optional -SHA256: b51dcc633407547c4d92e53ca7685b8890b9b8a69a73b3cf363f59764f302767 +SHA256: edf916789809222ad40b5ead1d23a94522833c5792569cf76e30f1805196a712 Section: misc -Size: 7859834 +Size: 9387150 Package: kubectl -Version: 1.13.9-00 -Installed-Size: 38337 +Version: 1.11.7-00 +Installed-Size: 54166 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.9-00_amd64_c5fe37dbe847b81f365884c81b5c87b0ef711471fe8eedb4c642497cfce2a5d4.deb +Filename: pool/kubectl_1.11.7-00_amd64_c690be55439c3d8820c73394796babbe4d47ecb20b1d945d57c3ce08f460a190.deb Priority: optional -SHA256: c5fe37dbe847b81f365884c81b5c87b0ef711471fe8eedb4c642497cfce2a5d4 +SHA256: c690be55439c3d8820c73394796babbe4d47ecb20b1d945d57c3ce08f460a190 Section: misc -Size: 7859452 +Size: 9385272 Package: kubectl -Version: 1.13.10-00 -Installed-Size: 38349 +Version: 1.11.8-00 +Installed-Size: 54167 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.10-00_amd64_b3db8c0736c29afebfc3258fa3e377b53bbe265b9bc06a17058a7f1743786535.deb +Filename: pool/kubectl_1.11.8-00_amd64_464b4108119827d9eb3e8a628a16cbfab033637a4212650190342f24ff260fb0.deb Priority: optional -SHA256: b3db8c0736c29afebfc3258fa3e377b53bbe265b9bc06a17058a7f1743786535 +SHA256: 464b4108119827d9eb3e8a628a16cbfab033637a4212650190342f24ff260fb0 Section: misc -Size: 7854912 +Size: 9385686 Package: kubectl -Version: 1.13.11-00 -Installed-Size: 38349 +Version: 1.11.9-00 +Installed-Size: 54171 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.11-00_amd64_48469e504f2f9643817f064084d9c28618e2475d7503842b60b5628246a98e37.deb +Filename: pool/kubectl_1.11.9-00_amd64_767549b796f6d09158b5b417475d3f5111e90295f7e41512baae3a30dc78a16b.deb Priority: optional -SHA256: 48469e504f2f9643817f064084d9c28618e2475d7503842b60b5628246a98e37 +SHA256: 767549b796f6d09158b5b417475d3f5111e90295f7e41512baae3a30dc78a16b Section: misc -Size: 7856060 +Size: 9387730 Package: kubectl -Version: 1.13.12-00 -Installed-Size: 38357 +Version: 1.11.10-00 +Installed-Size: 54167 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.13.12-00_amd64_b32ad754b6b4910ca709d76ec909bf28e227082a38867870d80205af4631467e.deb +Filename: pool/kubectl_1.11.10-00_amd64_d66a02f63226306fcbb193013174821ea63999dd91a7048fc0613bf4da161efc.deb Priority: optional -SHA256: b32ad754b6b4910ca709d76ec909bf28e227082a38867870d80205af4631467e +SHA256: d66a02f63226306fcbb193013174821ea63999dd91a7048fc0613bf4da161efc Section: misc -Size: 7856144 +Size: 9419898 Package: kubectl -Version: 1.14.0-00 -Installed-Size: 42110 +Version: 1.12.0-00 +Installed-Size: 56017 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.0-00_amd64_f6aa3b36f039aa9ce3614c08978ecbdff0900c7fc966bde6647c5d5b969dfabc.deb +Filename: pool/kubectl_1.12.0-00_amd64_242af67011dc074d0683131d96c22eb586f44553d0626767f0313d1eb8dc2b9f.deb Priority: optional -SHA256: f6aa3b36f039aa9ce3614c08978ecbdff0900c7fc966bde6647c5d5b969dfabc +SHA256: 242af67011dc074d0683131d96c22eb586f44553d0626767f0313d1eb8dc2b9f Section: misc -Size: 8801470 +Size: 9592406 Package: kubectl -Version: 1.14.1-00 -Installed-Size: 42122 +Version: 1.12.1-00 +Installed-Size: 56025 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.1-00_amd64_790b6cb2747741d766f595d924bfe25c4f83fdf24f8d64cf184b790d75f3d007.deb +Filename: pool/kubectl_1.12.1-00_amd64_f02235e5b8633b589e6f7c39a581b29bef4ea723f52812c152a609302073e5fe.deb Priority: optional -SHA256: 790b6cb2747741d766f595d924bfe25c4f83fdf24f8d64cf184b790d75f3d007 +SHA256: f02235e5b8633b589e6f7c39a581b29bef4ea723f52812c152a609302073e5fe Section: misc -Size: 8806278 +Size: 9594410 Package: kubectl -Version: 1.14.2-00 -Installed-Size: 42110 +Version: 1.12.2-00 +Installed-Size: 56025 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.2-00_amd64_98c512ffae2ab4b42b86ba3ae51c9a3621828867c395f6729931d977b5c51ddb.deb +Filename: pool/kubectl_1.12.2-00_amd64_ec905f7eb4a579661afdda2122ca8fa63fc46f561afd905e0c6f9eb5ded3671c.deb Priority: optional -SHA256: 98c512ffae2ab4b42b86ba3ae51c9a3621828867c395f6729931d977b5c51ddb +SHA256: ec905f7eb4a579661afdda2122ca8fa63fc46f561afd905e0c6f9eb5ded3671c Section: misc -Size: 8810056 +Size: 9599154 Package: kubectl -Version: 1.14.3-00 -Installed-Size: 42110 +Version: 1.12.3-00 +Installed-Size: 56029 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.3-00_amd64_86aa11d7fe030c6dec0eadd5eac5d1faa06714652358254511fc8b00c2eda9ff.deb +Filename: pool/kubectl_1.12.3-00_amd64_4acbe6dfb3760bb2376f686c5bc9afa99f601329895df6f7cc9712fc81c81723.deb Priority: optional -SHA256: 86aa11d7fe030c6dec0eadd5eac5d1faa06714652358254511fc8b00c2eda9ff +SHA256: 4acbe6dfb3760bb2376f686c5bc9afa99f601329895df6f7cc9712fc81c81723 Section: misc -Size: 8809480 +Size: 9595086 Package: kubectl -Version: 1.14.4-00 -Installed-Size: 42102 +Version: 1.12.4-00 +Installed-Size: 56047 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.4-00_amd64_caed738cd96163a28b9f9d685d7c9eabebcc9843037d3e7638c23cb347621dbf.deb +Filename: pool/kubectl_1.12.4-00_amd64_523056d573555f0a60b4031ff6efd59598eb75210bd35c5dbaad35835e378de8.deb Priority: optional -SHA256: caed738cd96163a28b9f9d685d7c9eabebcc9843037d3e7638c23cb347621dbf +SHA256: 523056d573555f0a60b4031ff6efd59598eb75210bd35c5dbaad35835e378de8 Section: misc -Size: 8807304 +Size: 9588466 Package: kubectl -Version: 1.14.5-00 -Installed-Size: 42102 +Version: 1.12.5-00 +Installed-Size: 56046 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.5-00_amd64_87a17024aef018b54e62ca08394a75a9508ff244c99784740637cfbb22d978bd.deb +Filename: pool/kubectl_1.12.5-00_amd64_63227207caf7d58e3bf1583bd4080c81931f7b48b6b6aa24b309a3c2fa2fa3ef.deb Priority: optional -SHA256: 87a17024aef018b54e62ca08394a75a9508ff244c99784740637cfbb22d978bd +SHA256: 63227207caf7d58e3bf1583bd4080c81931f7b48b6b6aa24b309a3c2fa2fa3ef Section: misc -Size: 8807320 +Size: 9585202 Package: kubectl -Version: 1.14.6-00 -Installed-Size: 42102 +Version: 1.12.6-00 +Installed-Size: 56051 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.6-00_amd64_7d93d4db5348bde6fa67f2fa1d44b3bc4448b9620b252eea0c7cf1ce763d5baf.deb +Filename: pool/kubectl_1.12.6-00_amd64_800332fc8d3a91be2cff5137e63b4e15565f8f980584adf34f00c27f7a2b89cd.deb Priority: optional -SHA256: 7d93d4db5348bde6fa67f2fa1d44b3bc4448b9620b252eea0c7cf1ce763d5baf +SHA256: 800332fc8d3a91be2cff5137e63b4e15565f8f980584adf34f00c27f7a2b89cd Section: misc -Size: 8808212 +Size: 9589258 Package: kubectl -Version: 1.14.7-00 -Installed-Size: 42102 +Version: 1.12.7-00 +Installed-Size: 56022 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.7-00_amd64_2eb0e7867fa10a47d02abc04efa990803ffc44014d84aa29c44415b0f225b2f3.deb +Filename: pool/kubectl_1.12.7-00_amd64_00dbe2b6f91b1b8beffb1731ca77d5b37efbaebd20f8ef2eb1837bbd4370092c.deb Priority: optional -SHA256: 2eb0e7867fa10a47d02abc04efa990803ffc44014d84aa29c44415b0f225b2f3 +SHA256: 00dbe2b6f91b1b8beffb1731ca77d5b37efbaebd20f8ef2eb1837bbd4370092c Section: misc -Size: 8807380 +Size: 9585536 Package: kubectl -Version: 1.14.8-00 -Installed-Size: 42110 +Version: 1.12.8-00 +Installed-Size: 56022 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.8-00_amd64_e5ecc61a3ffb77af088033b31510afbabd4d6526b1639cef0f17f58b5fd1a647.deb +Filename: pool/kubectl_1.12.8-00_amd64_a6cbdf22d5cbe7a77784a9dc02797b4365fe9ad05473f96cc9f82cc8f10c2ba1.deb Priority: optional -SHA256: e5ecc61a3ffb77af088033b31510afbabd4d6526b1639cef0f17f58b5fd1a647 +SHA256: a6cbdf22d5cbe7a77784a9dc02797b4365fe9ad05473f96cc9f82cc8f10c2ba1 Section: misc -Size: 8810764 +Size: 9587390 Package: kubectl -Version: 1.14.9-00 -Installed-Size: 42110 +Version: 1.12.9-00 +Installed-Size: 56023 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.9-00_amd64_0f0bb925d3a662e699a135af91406a0e1e7fda6fc8bcee6addaf8cc8b7018e13.deb +Filename: pool/kubectl_1.12.9-00_amd64_b3b61921a3e8bbe955b5c882f3d910fcda092a44a78db4eacc139a1869b57678.deb Priority: optional -SHA256: 0f0bb925d3a662e699a135af91406a0e1e7fda6fc8bcee6addaf8cc8b7018e13 +SHA256: b3b61921a3e8bbe955b5c882f3d910fcda092a44a78db4eacc139a1869b57678 Section: misc -Size: 8808976 +Size: 9643236 Package: kubectl -Version: 1.14.10-00 -Installed-Size: 42114 +Version: 1.12.10-00 +Installed-Size: 56023 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.14.10-00_amd64_d99ce89e6d2c461fd16dbb17fb83facaf94a7de5cc41cc6a69b35fccf410b115.deb +Filename: pool/kubectl_1.12.10-00_amd64_896bcfcacec129e50e5dcf6121ae5c32ff6b53c3fc4c5a082226d74b5fbfb0c5.deb Priority: optional -SHA256: d99ce89e6d2c461fd16dbb17fb83facaf94a7de5cc41cc6a69b35fccf410b115 +SHA256: 896bcfcacec129e50e5dcf6121ae5c32ff6b53c3fc4c5a082226d74b5fbfb0c5 Section: misc -Size: 8806876 +Size: 9639146 Package: kubectl -Version: 1.15.0-00 -Installed-Size: 41984 +Version: 1.13.0-00 +Installed-Size: 38313 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.0-00_amd64_c7d9a92902c178bea81001e2d753ecc00d3575f25ea2cf0737038368946c7f69.deb +Filename: pool/kubectl_1.13.0-00_amd64_6e20e10266a9e0698489555a822c13af97e3a5d815fdea17a36995152550ab74.deb Priority: optional -SHA256: c7d9a92902c178bea81001e2d753ecc00d3575f25ea2cf0737038368946c7f69 +SHA256: 6e20e10266a9e0698489555a822c13af97e3a5d815fdea17a36995152550ab74 Section: misc -Size: 8763290 +Size: 7841228 Package: kubectl -Version: 1.15.1-00 -Installed-Size: 41988 +Version: 1.13.1-00 +Installed-Size: 38321 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.1-00_amd64_782942e1a713d28d5f38075deb19b298f896756aa4cc889f441dcae69fd81e07.deb +Filename: pool/kubectl_1.13.1-00_amd64_85ea781848ea3e9aff07cec72aaa3a0fdddafeaf2a969e8f3f29c0778b442faa.deb Priority: optional -SHA256: 782942e1a713d28d5f38075deb19b298f896756aa4cc889f441dcae69fd81e07 +SHA256: 85ea781848ea3e9aff07cec72aaa3a0fdddafeaf2a969e8f3f29c0778b442faa Section: misc -Size: 8763430 +Size: 7842736 Package: kubectl -Version: 1.15.2-00 -Installed-Size: 41984 +Version: 1.13.2-00 +Installed-Size: 38349 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.2-00_amd64_45bcc3f1dfa3ad9d6fe2c5d9e6509cfc38a5b65e40b7bf2924f6974853be421d.deb +Filename: pool/kubectl_1.13.2-00_amd64_fedd83bfb3726db0ad367bc0183fa5d32ecbf30bb806963cd0c027bf2b794b0a.deb Priority: optional -SHA256: 45bcc3f1dfa3ad9d6fe2c5d9e6509cfc38a5b65e40b7bf2924f6974853be421d +SHA256: fedd83bfb3726db0ad367bc0183fa5d32ecbf30bb806963cd0c027bf2b794b0a Section: misc -Size: 8762632 +Size: 7847130 Package: kubectl -Version: 1.15.3-00 -Installed-Size: 41984 +Version: 1.13.3-00 +Installed-Size: 38349 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.3-00_amd64_f798287e734bbf94e438651311c4ca16866559871c1dfb34a33628257249cf7a.deb +Filename: pool/kubectl_1.13.3-00_amd64_f8ac822c2fef60a2bc13fcb68ecd786f735c1e76e1fa02cd932f339ccb5cecd1.deb Priority: optional -SHA256: f798287e734bbf94e438651311c4ca16866559871c1dfb34a33628257249cf7a +SHA256: f8ac822c2fef60a2bc13fcb68ecd786f735c1e76e1fa02cd932f339ccb5cecd1 Section: misc -Size: 8762784 +Size: 7851670 Package: kubectl -Version: 1.15.4-00 -Installed-Size: 41984 +Version: 1.13.4-00 +Installed-Size: 38349 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.4-00_amd64_f4ffdce61580112eecc65832d51b46f5347c4c93e37ae1714dc3a20afb563854.deb +Filename: pool/kubectl_1.13.4-00_amd64_40eeb57411431e9c317002357210d2231268bd9b5bd886ad1246459481d549e5.deb Priority: optional -SHA256: f4ffdce61580112eecc65832d51b46f5347c4c93e37ae1714dc3a20afb563854 +SHA256: 40eeb57411431e9c317002357210d2231268bd9b5bd886ad1246459481d549e5 Section: misc -Size: 8756820 +Size: 7858366 Package: kubectl -Version: 1.15.5-00 -Installed-Size: 41992 +Version: 1.13.5-00 +Installed-Size: 38337 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.5-00_amd64_bc99b7c6736e0d254263f270a4fec7e303fd6cb77d5ee97209ea7b34e539e4bc.deb +Filename: pool/kubectl_1.13.5-00_amd64_c1285f382497a45307c184aba77afe41e3200d6109ccd9cd9852800302f5495f.deb Priority: optional -SHA256: bc99b7c6736e0d254263f270a4fec7e303fd6cb77d5ee97209ea7b34e539e4bc +SHA256: c1285f382497a45307c184aba77afe41e3200d6109ccd9cd9852800302f5495f Section: misc -Size: 8761152 +Size: 7852208 Package: kubectl -Version: 1.15.6-00 -Installed-Size: 41992 +Version: 1.13.6-00 +Installed-Size: 38337 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.6-00_amd64_a82e18c2533dc96cda21e03c605f325f352ac6fabbdd09fef43cca97254b436e.deb +Filename: pool/kubectl_1.13.6-00_amd64_b70158dbf1083f5f630e48a7ce84ee4ac9df3305ef4c5b56357ef134bbf85b51.deb Priority: optional -SHA256: a82e18c2533dc96cda21e03c605f325f352ac6fabbdd09fef43cca97254b436e +SHA256: b70158dbf1083f5f630e48a7ce84ee4ac9df3305ef4c5b56357ef134bbf85b51 Section: misc -Size: 8760556 +Size: 7862274 Package: kubectl -Version: 1.15.7-00 -Installed-Size: 41992 +Version: 1.13.7-00 +Installed-Size: 38337 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.7-00_amd64_83a4bd7636fc1c94ddd08f2a0cd1afad814df716e084bfe9c4f1aaf003aec994.deb +Filename: pool/kubectl_1.13.7-00_amd64_a93591488a26f891e03f3d083f064f531e27975418147b0d8e739d6cdc803b6c.deb Priority: optional -SHA256: 83a4bd7636fc1c94ddd08f2a0cd1afad814df716e084bfe9c4f1aaf003aec994 +SHA256: a93591488a26f891e03f3d083f064f531e27975418147b0d8e739d6cdc803b6c Section: misc -Size: 8760208 +Size: 7861348 Package: kubectl -Version: 1.15.8-00 -Installed-Size: 41992 +Version: 1.13.8-00 +Installed-Size: 38337 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.8-00_amd64_1549c2499b976043b6a50c85dfa4d47d2fe08b5e0dd59b175e3bc3b12f175adc.deb +Filename: pool/kubectl_1.13.8-00_amd64_b51dcc633407547c4d92e53ca7685b8890b9b8a69a73b3cf363f59764f302767.deb Priority: optional -SHA256: 1549c2499b976043b6a50c85dfa4d47d2fe08b5e0dd59b175e3bc3b12f175adc +SHA256: b51dcc633407547c4d92e53ca7685b8890b9b8a69a73b3cf363f59764f302767 Section: misc -Size: 8764148 +Size: 7859834 Package: kubectl -Version: 1.15.9-00 -Installed-Size: 41992 +Version: 1.13.9-00 +Installed-Size: 38337 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.9-00_amd64_2726b6f779246359046fd12487a8ccde944bd65e0a7f6e65ad8efb2bc94d2167.deb +Filename: pool/kubectl_1.13.9-00_amd64_c5fe37dbe847b81f365884c81b5c87b0ef711471fe8eedb4c642497cfce2a5d4.deb Priority: optional -SHA256: 2726b6f779246359046fd12487a8ccde944bd65e0a7f6e65ad8efb2bc94d2167 +SHA256: c5fe37dbe847b81f365884c81b5c87b0ef711471fe8eedb4c642497cfce2a5d4 Section: misc -Size: 8761756 +Size: 7859452 Package: kubectl -Version: 1.15.10-00 -Installed-Size: 41996 +Version: 1.13.10-00 +Installed-Size: 38349 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.10-00_amd64_0178220deecfb4c0e86a2cfaa68f31a0cfcd288648815ab77533b24278669c08.deb +Filename: pool/kubectl_1.13.10-00_amd64_b3db8c0736c29afebfc3258fa3e377b53bbe265b9bc06a17058a7f1743786535.deb Priority: optional -SHA256: 0178220deecfb4c0e86a2cfaa68f31a0cfcd288648815ab77533b24278669c08 +SHA256: b3db8c0736c29afebfc3258fa3e377b53bbe265b9bc06a17058a7f1743786535 Section: misc -Size: 8758784 +Size: 7854912 Package: kubectl -Version: 1.15.11-00 -Installed-Size: 41996 +Version: 1.13.11-00 +Installed-Size: 38349 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.11-00_amd64_800901da84d6eb400fe33ea03716bdda7a5ddbc223d6cef9512e0ba1fd962d55.deb +Filename: pool/kubectl_1.13.11-00_amd64_48469e504f2f9643817f064084d9c28618e2475d7503842b60b5628246a98e37.deb Priority: optional -SHA256: 800901da84d6eb400fe33ea03716bdda7a5ddbc223d6cef9512e0ba1fd962d55 +SHA256: 48469e504f2f9643817f064084d9c28618e2475d7503842b60b5628246a98e37 Section: misc -Size: 8759936 +Size: 7856060 Package: kubectl -Version: 1.15.12-00 -Installed-Size: 42056 +Version: 1.13.12-00 +Installed-Size: 38357 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.15.12-00_amd64_c9d92730d37a7380682e6d88d9f77be02be4bf73f5df74a2625dae50e5d70ec6.deb +Filename: pool/kubectl_1.13.12-00_amd64_b32ad754b6b4910ca709d76ec909bf28e227082a38867870d80205af4631467e.deb Priority: optional -SHA256: c9d92730d37a7380682e6d88d9f77be02be4bf73f5df74a2625dae50e5d70ec6 +SHA256: b32ad754b6b4910ca709d76ec909bf28e227082a38867870d80205af4631467e Section: misc -Size: 8775168 +Size: 7856144 Package: kubectl -Version: 1.16.0-00 -Installed-Size: 45589 +Version: 1.14.0-00 +Installed-Size: 42110 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.0-00_amd64_679986772c12ed40781ae02317f3211f8615427c033194618ba2fdecc1cee43f.deb +Filename: pool/kubectl_1.14.0-00_amd64_f6aa3b36f039aa9ce3614c08978ecbdff0900c7fc966bde6647c5d5b969dfabc.deb Priority: optional -SHA256: 679986772c12ed40781ae02317f3211f8615427c033194618ba2fdecc1cee43f +SHA256: f6aa3b36f039aa9ce3614c08978ecbdff0900c7fc966bde6647c5d5b969dfabc Section: misc -Size: 9230936 +Size: 8801470 Package: kubectl -Version: 1.16.1-00 -Installed-Size: 45593 -Maintainer: Kubernetes Authors +Version: 1.14.1-00 +Installed-Size: 42122 +Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.1-00_amd64_73509770c675609a9be110b60b3c948110b4f06f1de60eb6796f73cb601c9493.deb +Filename: pool/kubectl_1.14.1-00_amd64_790b6cb2747741d766f595d924bfe25c4f83fdf24f8d64cf184b790d75f3d007.deb Priority: optional -SHA256: 73509770c675609a9be110b60b3c948110b4f06f1de60eb6796f73cb601c9493 +SHA256: 790b6cb2747741d766f595d924bfe25c4f83fdf24f8d64cf184b790d75f3d007 Section: misc -Size: 9234092 +Size: 8806278 Package: kubectl -Version: 1.16.2-00 -Installed-Size: 45593 +Version: 1.14.2-00 +Installed-Size: 42110 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.2-00_amd64_3fbcf105864121e234a95cef203b08212e3eccefa96e1e37b10e20b37968ab93.deb +Filename: pool/kubectl_1.14.2-00_amd64_98c512ffae2ab4b42b86ba3ae51c9a3621828867c395f6729931d977b5c51ddb.deb Priority: optional -SHA256: 3fbcf105864121e234a95cef203b08212e3eccefa96e1e37b10e20b37968ab93 +SHA256: 98c512ffae2ab4b42b86ba3ae51c9a3621828867c395f6729931d977b5c51ddb Section: misc -Size: 9233820 +Size: 8810056 Package: kubectl -Version: 1.16.3-00 -Installed-Size: 45593 +Version: 1.14.3-00 +Installed-Size: 42110 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.3-00_amd64_bbca932fd543846177182fcba147e8b5375875038c7d0508f520b3f5a31bf4d9.deb +Filename: pool/kubectl_1.14.3-00_amd64_86aa11d7fe030c6dec0eadd5eac5d1faa06714652358254511fc8b00c2eda9ff.deb Priority: optional -SHA256: bbca932fd543846177182fcba147e8b5375875038c7d0508f520b3f5a31bf4d9 +SHA256: 86aa11d7fe030c6dec0eadd5eac5d1faa06714652358254511fc8b00c2eda9ff Section: misc -Size: 9232532 +Size: 8809480 Package: kubectl -Version: 1.16.4-00 -Installed-Size: 45593 +Version: 1.14.4-00 +Installed-Size: 42102 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.4-00_amd64_0615b160cb88a40272a212ad9ed4929feb3aaf4b4f665bbc295c68613169d267.deb +Filename: pool/kubectl_1.14.4-00_amd64_caed738cd96163a28b9f9d685d7c9eabebcc9843037d3e7638c23cb347621dbf.deb Priority: optional -SHA256: 0615b160cb88a40272a212ad9ed4929feb3aaf4b4f665bbc295c68613169d267 +SHA256: caed738cd96163a28b9f9d685d7c9eabebcc9843037d3e7638c23cb347621dbf Section: misc -Size: 9232952 +Size: 8807304 Package: kubectl -Version: 1.16.5-00 -Installed-Size: 41893 +Version: 1.14.5-00 +Installed-Size: 42102 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.5-00_amd64_338f26d79fc0cb395461f4ff7e2d55a132cc27da7ffa7a61848106406e934df3.deb +Filename: pool/kubectl_1.14.5-00_amd64_87a17024aef018b54e62ca08394a75a9508ff244c99784740637cfbb22d978bd.deb Priority: optional -SHA256: 338f26d79fc0cb395461f4ff7e2d55a132cc27da7ffa7a61848106406e934df3 +SHA256: 87a17024aef018b54e62ca08394a75a9508ff244c99784740637cfbb22d978bd Section: misc -Size: 8656280 +Size: 8807320 Package: kubectl -Version: 1.16.6-00 -Installed-Size: 41889 +Version: 1.14.6-00 +Installed-Size: 42102 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.6-00_amd64_a3c80436c55a7cf3122e4a176e24ebb5c26abb122933e7854a5ca429b081c1ae.deb +Filename: pool/kubectl_1.14.6-00_amd64_7d93d4db5348bde6fa67f2fa1d44b3bc4448b9620b252eea0c7cf1ce763d5baf.deb Priority: optional -SHA256: a3c80436c55a7cf3122e4a176e24ebb5c26abb122933e7854a5ca429b081c1ae +SHA256: 7d93d4db5348bde6fa67f2fa1d44b3bc4448b9620b252eea0c7cf1ce763d5baf Section: misc -Size: 8659208 +Size: 8808212 Package: kubectl -Version: 1.16.7-00 -Installed-Size: 41893 +Version: 1.14.7-00 +Installed-Size: 42102 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.7-00_amd64_653c2175706f761d3447f6f547b60ae824ed2846a83075d8d54132a2099fada8.deb +Filename: pool/kubectl_1.14.7-00_amd64_2eb0e7867fa10a47d02abc04efa990803ffc44014d84aa29c44415b0f225b2f3.deb Priority: optional -SHA256: 653c2175706f761d3447f6f547b60ae824ed2846a83075d8d54132a2099fada8 +SHA256: 2eb0e7867fa10a47d02abc04efa990803ffc44014d84aa29c44415b0f225b2f3 Section: misc -Size: 8661752 +Size: 8807380 Package: kubectl -Version: 1.16.8-00 -Installed-Size: 41897 +Version: 1.14.8-00 +Installed-Size: 42110 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.8-00_amd64_cb478f550fcf7e6344dee58edf6f2fadcac7a51bf70e74d9c54212e7cbc41674.deb +Filename: pool/kubectl_1.14.8-00_amd64_e5ecc61a3ffb77af088033b31510afbabd4d6526b1639cef0f17f58b5fd1a647.deb Priority: optional -SHA256: cb478f550fcf7e6344dee58edf6f2fadcac7a51bf70e74d9c54212e7cbc41674 +SHA256: e5ecc61a3ffb77af088033b31510afbabd4d6526b1639cef0f17f58b5fd1a647 Section: misc -Size: 8659268 +Size: 8810764 Package: kubectl -Version: 1.16.9-00 -Installed-Size: 41953 +Version: 1.14.9-00 +Installed-Size: 42110 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.9-00_amd64_fc38c1497bd35b57f0c7aeabb5881b75432713036385668f64ea9ef98e1ee7be.deb +Filename: pool/kubectl_1.14.9-00_amd64_0f0bb925d3a662e699a135af91406a0e1e7fda6fc8bcee6addaf8cc8b7018e13.deb Priority: optional -SHA256: fc38c1497bd35b57f0c7aeabb5881b75432713036385668f64ea9ef98e1ee7be +SHA256: 0f0bb925d3a662e699a135af91406a0e1e7fda6fc8bcee6addaf8cc8b7018e13 Section: misc -Size: 8668764 +Size: 8808976 Package: kubectl -Version: 1.16.10-00 -Installed-Size: 41957 +Version: 1.14.10-00 +Installed-Size: 42114 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.10-00_amd64_d0dbfd8a575114d913b7483c3a1c21151d7e6e36ab3f7c7202be7bce0cc44235.deb +Filename: pool/kubectl_1.14.10-00_amd64_d99ce89e6d2c461fd16dbb17fb83facaf94a7de5cc41cc6a69b35fccf410b115.deb Priority: optional -SHA256: d0dbfd8a575114d913b7483c3a1c21151d7e6e36ab3f7c7202be7bce0cc44235 +SHA256: d99ce89e6d2c461fd16dbb17fb83facaf94a7de5cc41cc6a69b35fccf410b115 Section: misc -Size: 8669968 +Size: 8806876 Package: kubectl -Version: 1.16.11-00 -Installed-Size: 41957 +Version: 1.15.0-00 +Installed-Size: 41984 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.11-00_amd64_7c4a858c0ce863c35ee7c1727bc52296db51c881702701cb70b62e607e885ab3.deb +Filename: pool/kubectl_1.15.0-00_amd64_c7d9a92902c178bea81001e2d753ecc00d3575f25ea2cf0737038368946c7f69.deb Priority: optional -SHA256: 7c4a858c0ce863c35ee7c1727bc52296db51c881702701cb70b62e607e885ab3 +SHA256: c7d9a92902c178bea81001e2d753ecc00d3575f25ea2cf0737038368946c7f69 Section: misc -Size: 8667672 +Size: 8763290 Package: kubectl -Version: 1.16.11-01 -Installed-Size: 41957 +Version: 1.15.1-00 +Installed-Size: 41988 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.11-01_amd64_7ec912d2a9db49c38b172060b1743ecbb8f35623b48274fc64ca98bb61401320.deb +Filename: pool/kubectl_1.15.1-00_amd64_782942e1a713d28d5f38075deb19b298f896756aa4cc889f441dcae69fd81e07.deb Priority: optional -SHA256: 7ec912d2a9db49c38b172060b1743ecbb8f35623b48274fc64ca98bb61401320 +SHA256: 782942e1a713d28d5f38075deb19b298f896756aa4cc889f441dcae69fd81e07 Section: misc -Size: 8667508 +Size: 8763430 Package: kubectl -Version: 1.16.12-00 -Installed-Size: 41953 +Version: 1.15.2-00 +Installed-Size: 41984 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.12-00_amd64_e5f0143fa40bc479d23a25cc0f0d1fbbc6cf63e843e2d44480b1defd8be3799a.deb +Filename: pool/kubectl_1.15.2-00_amd64_45bcc3f1dfa3ad9d6fe2c5d9e6509cfc38a5b65e40b7bf2924f6974853be421d.deb Priority: optional -SHA256: e5f0143fa40bc479d23a25cc0f0d1fbbc6cf63e843e2d44480b1defd8be3799a +SHA256: 45bcc3f1dfa3ad9d6fe2c5d9e6509cfc38a5b65e40b7bf2924f6974853be421d Section: misc -Size: 8668564 +Size: 8762632 Package: kubectl -Version: 1.16.13-00 -Installed-Size: 41957 +Version: 1.15.3-00 +Installed-Size: 41984 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.13-00_amd64_adffae4ae9512edc6cac76e27546e9dc37cdf87ec8e5fb4f8660e6147ecee70e.deb +Filename: pool/kubectl_1.15.3-00_amd64_f798287e734bbf94e438651311c4ca16866559871c1dfb34a33628257249cf7a.deb Priority: optional -SHA256: adffae4ae9512edc6cac76e27546e9dc37cdf87ec8e5fb4f8660e6147ecee70e +SHA256: f798287e734bbf94e438651311c4ca16866559871c1dfb34a33628257249cf7a Section: misc -Size: 8665220 +Size: 8762784 Package: kubectl -Version: 1.16.14-00 -Installed-Size: 41965 +Version: 1.15.4-00 +Installed-Size: 41984 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.14-00_amd64_c20d474a4f05d03e93f82fb412bbf5101c39d0d09abfd2a839b9dcb0f0c3474e.deb +Filename: pool/kubectl_1.15.4-00_amd64_f4ffdce61580112eecc65832d51b46f5347c4c93e37ae1714dc3a20afb563854.deb Priority: optional -SHA256: c20d474a4f05d03e93f82fb412bbf5101c39d0d09abfd2a839b9dcb0f0c3474e +SHA256: f4ffdce61580112eecc65832d51b46f5347c4c93e37ae1714dc3a20afb563854 Section: misc -Size: 8666852 +Size: 8756820 Package: kubectl -Version: 1.16.15-00 -Installed-Size: 41965 +Version: 1.15.5-00 +Installed-Size: 41992 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.16.15-00_amd64_f89b8cf6cf8c005624fd0e5a62007a9017d484569d71f2ec7f1a426c753c33c6.deb +Filename: pool/kubectl_1.15.5-00_amd64_bc99b7c6736e0d254263f270a4fec7e303fd6cb77d5ee97209ea7b34e539e4bc.deb Priority: optional -SHA256: f89b8cf6cf8c005624fd0e5a62007a9017d484569d71f2ec7f1a426c753c33c6 +SHA256: bc99b7c6736e0d254263f270a4fec7e303fd6cb77d5ee97209ea7b34e539e4bc Section: misc -Size: 8670916 +Size: 8761152 Package: kubectl -Version: 1.17.0-00 -Installed-Size: 42481 +Version: 1.15.6-00 +Installed-Size: 41992 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.0-00_amd64_fba222a6fd264d10f11a1a5fdf676ad4b3d41aebe9c23dae5155ef20d0a964dd.deb +Filename: pool/kubectl_1.15.6-00_amd64_a82e18c2533dc96cda21e03c605f325f352ac6fabbdd09fef43cca97254b436e.deb Priority: optional -SHA256: fba222a6fd264d10f11a1a5fdf676ad4b3d41aebe9c23dae5155ef20d0a964dd +SHA256: a82e18c2533dc96cda21e03c605f325f352ac6fabbdd09fef43cca97254b436e Section: misc -Size: 8741658 +Size: 8760556 Package: kubectl -Version: 1.17.1-00 -Installed-Size: 42477 +Version: 1.15.7-00 +Installed-Size: 41992 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.1-00_amd64_0dc19318c9114db2931552bb8bf650a14227a9603cb73fe0917ac7868ec7fcf0.deb +Filename: pool/kubectl_1.15.7-00_amd64_83a4bd7636fc1c94ddd08f2a0cd1afad814df716e084bfe9c4f1aaf003aec994.deb Priority: optional -SHA256: 0dc19318c9114db2931552bb8bf650a14227a9603cb73fe0917ac7868ec7fcf0 +SHA256: 83a4bd7636fc1c94ddd08f2a0cd1afad814df716e084bfe9c4f1aaf003aec994 Section: misc -Size: 8740408 +Size: 8760208 Package: kubectl -Version: 1.17.2-00 -Installed-Size: 42477 +Version: 1.15.8-00 +Installed-Size: 41992 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.2-00_amd64_4cf57f0a5445409293963fddc279fbba9f48c6c280fa27479651d1908848b96a.deb +Filename: pool/kubectl_1.15.8-00_amd64_1549c2499b976043b6a50c85dfa4d47d2fe08b5e0dd59b175e3bc3b12f175adc.deb Priority: optional -SHA256: 4cf57f0a5445409293963fddc279fbba9f48c6c280fa27479651d1908848b96a +SHA256: 1549c2499b976043b6a50c85dfa4d47d2fe08b5e0dd59b175e3bc3b12f175adc Section: misc -Size: 8738116 +Size: 8764148 Package: kubectl -Version: 1.17.3-00 -Installed-Size: 42485 +Version: 1.15.9-00 +Installed-Size: 41992 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.3-00_amd64_289913506f67535270a8ab4d9b30e6ece825440bc00a225295915741946c7bc6.deb +Filename: pool/kubectl_1.15.9-00_amd64_2726b6f779246359046fd12487a8ccde944bd65e0a7f6e65ad8efb2bc94d2167.deb Priority: optional -SHA256: 289913506f67535270a8ab4d9b30e6ece825440bc00a225295915741946c7bc6 +SHA256: 2726b6f779246359046fd12487a8ccde944bd65e0a7f6e65ad8efb2bc94d2167 Section: misc -Size: 8740412 +Size: 8761756 Package: kubectl -Version: 1.17.4-00 -Installed-Size: 42485 +Version: 1.15.10-00 +Installed-Size: 41996 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.4-00_amd64_129fe02893f0eb76a2b653c2edc0fb6e67b0e6f3b4d3b8045e0447db751df3e1.deb +Filename: pool/kubectl_1.15.10-00_amd64_0178220deecfb4c0e86a2cfaa68f31a0cfcd288648815ab77533b24278669c08.deb Priority: optional -SHA256: 129fe02893f0eb76a2b653c2edc0fb6e67b0e6f3b4d3b8045e0447db751df3e1 +SHA256: 0178220deecfb4c0e86a2cfaa68f31a0cfcd288648815ab77533b24278669c08 Section: misc -Size: 8740868 +Size: 8758784 Package: kubectl -Version: 1.17.5-00 -Installed-Size: 42493 +Version: 1.15.11-00 +Installed-Size: 41996 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.5-00_amd64_e6db6f04c64b9c5a5ab21a9f7b73b614e1a2b82040986eb377f8c35b71d5b30b.deb +Filename: pool/kubectl_1.15.11-00_amd64_800901da84d6eb400fe33ea03716bdda7a5ddbc223d6cef9512e0ba1fd962d55.deb Priority: optional -SHA256: e6db6f04c64b9c5a5ab21a9f7b73b614e1a2b82040986eb377f8c35b71d5b30b +SHA256: 800901da84d6eb400fe33ea03716bdda7a5ddbc223d6cef9512e0ba1fd962d55 Section: misc -Size: 8740992 +Size: 8759936 Package: kubectl -Version: 1.17.6-00 -Installed-Size: 42493 +Version: 1.15.12-00 +Installed-Size: 42056 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.6-00_amd64_afde7608a4c4ec4f48ec4eb9f82758b5226ac8f64b771843653f7c43bac543c7.deb +Filename: pool/kubectl_1.15.12-00_amd64_c9d92730d37a7380682e6d88d9f77be02be4bf73f5df74a2625dae50e5d70ec6.deb Priority: optional -SHA256: afde7608a4c4ec4f48ec4eb9f82758b5226ac8f64b771843653f7c43bac543c7 +SHA256: c9d92730d37a7380682e6d88d9f77be02be4bf73f5df74a2625dae50e5d70ec6 Section: misc -Size: 8741412 +Size: 8775168 Package: kubectl -Version: 1.17.7-00 -Installed-Size: 42489 +Version: 1.16.0-00 +Installed-Size: 45589 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.7-00_amd64_603e8b2c3a5764b23c0e57a9c7982d77db9ee204bfd6dd3736f8c76a684366c0.deb +Filename: pool/kubectl_1.16.0-00_amd64_679986772c12ed40781ae02317f3211f8615427c033194618ba2fdecc1cee43f.deb Priority: optional -SHA256: 603e8b2c3a5764b23c0e57a9c7982d77db9ee204bfd6dd3736f8c76a684366c0 +SHA256: 679986772c12ed40781ae02317f3211f8615427c033194618ba2fdecc1cee43f Section: misc -Size: 8743708 +Size: 9230936 Package: kubectl -Version: 1.17.7-01 -Installed-Size: 42489 +Version: 1.16.1-00 +Installed-Size: 45593 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.7-01_amd64_1fd85cec31226ccfe74913c19008d8e990a0fd03107ad54fa26cb2c6d0d4aa45.deb +Filename: pool/kubectl_1.16.1-00_amd64_73509770c675609a9be110b60b3c948110b4f06f1de60eb6796f73cb601c9493.deb Priority: optional -SHA256: 1fd85cec31226ccfe74913c19008d8e990a0fd03107ad54fa26cb2c6d0d4aa45 +SHA256: 73509770c675609a9be110b60b3c948110b4f06f1de60eb6796f73cb601c9493 Section: misc -Size: 8742696 +Size: 9234092 Package: kubectl -Version: 1.17.8-00 -Installed-Size: 42489 +Version: 1.16.2-00 +Installed-Size: 45593 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.8-00_amd64_a08f4339cc3c1d47aa40b2ab921482df325ce946996cd228f155e7a778a8c36f.deb +Filename: pool/kubectl_1.16.2-00_amd64_3fbcf105864121e234a95cef203b08212e3eccefa96e1e37b10e20b37968ab93.deb Priority: optional -SHA256: a08f4339cc3c1d47aa40b2ab921482df325ce946996cd228f155e7a778a8c36f +SHA256: 3fbcf105864121e234a95cef203b08212e3eccefa96e1e37b10e20b37968ab93 Section: misc -Size: 8742676 +Size: 9233820 Package: kubectl -Version: 1.17.9-00 -Installed-Size: 42489 +Version: 1.16.3-00 +Installed-Size: 45593 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.9-00_amd64_2de3c61a6dacc5add09406cead2da130ebecf65611662d114f4bcfff0afcc26a.deb +Filename: pool/kubectl_1.16.3-00_amd64_bbca932fd543846177182fcba147e8b5375875038c7d0508f520b3f5a31bf4d9.deb Priority: optional -SHA256: 2de3c61a6dacc5add09406cead2da130ebecf65611662d114f4bcfff0afcc26a +SHA256: bbca932fd543846177182fcba147e8b5375875038c7d0508f520b3f5a31bf4d9 Section: misc -Size: 8745424 +Size: 9232532 Package: kubectl -Version: 1.17.11-00 -Installed-Size: 42501 +Version: 1.16.4-00 +Installed-Size: 45593 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.11-00_amd64_f77d54d98ad7898213cf673b61e413b1c6cb391413941d6397f86c14e038b9cf.deb +Filename: pool/kubectl_1.16.4-00_amd64_0615b160cb88a40272a212ad9ed4929feb3aaf4b4f665bbc295c68613169d267.deb Priority: optional -SHA256: f77d54d98ad7898213cf673b61e413b1c6cb391413941d6397f86c14e038b9cf +SHA256: 0615b160cb88a40272a212ad9ed4929feb3aaf4b4f665bbc295c68613169d267 Section: misc -Size: 8745888 +Size: 9232952 Package: kubectl -Version: 1.17.12-00 -Installed-Size: 42501 +Version: 1.16.5-00 +Installed-Size: 41893 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.12-00_amd64_52c9b4afd5b48099da312f8ec84c2a69fc856591df33a66793ac32ad1d2b06a1.deb +Filename: pool/kubectl_1.16.5-00_amd64_338f26d79fc0cb395461f4ff7e2d55a132cc27da7ffa7a61848106406e934df3.deb Priority: optional -SHA256: 52c9b4afd5b48099da312f8ec84c2a69fc856591df33a66793ac32ad1d2b06a1 +SHA256: 338f26d79fc0cb395461f4ff7e2d55a132cc27da7ffa7a61848106406e934df3 Section: misc -Size: 8744236 +Size: 8656280 Package: kubectl -Version: 1.17.13-00 -Installed-Size: 42505 +Version: 1.16.6-00 +Installed-Size: 41889 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.13-00_amd64_8675ffaf06df775f075e211674c9cd8859f109e0a2888caaa625522a8cb639a2.deb +Filename: pool/kubectl_1.16.6-00_amd64_a3c80436c55a7cf3122e4a176e24ebb5c26abb122933e7854a5ca429b081c1ae.deb Priority: optional -SHA256: 8675ffaf06df775f075e211674c9cd8859f109e0a2888caaa625522a8cb639a2 +SHA256: a3c80436c55a7cf3122e4a176e24ebb5c26abb122933e7854a5ca429b081c1ae Section: misc -Size: 8744500 +Size: 8659208 Package: kubectl -Version: 1.17.14-00 -Installed-Size: 42501 +Version: 1.16.7-00 +Installed-Size: 41893 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.14-00_amd64_deb51a90ebe1d243b853f96083ae494a74017a1c334f37ad5d4608d57b5cd8ad.deb +Filename: pool/kubectl_1.16.7-00_amd64_653c2175706f761d3447f6f547b60ae824ed2846a83075d8d54132a2099fada8.deb Priority: optional -SHA256: deb51a90ebe1d243b853f96083ae494a74017a1c334f37ad5d4608d57b5cd8ad +SHA256: 653c2175706f761d3447f6f547b60ae824ed2846a83075d8d54132a2099fada8 Section: misc -Size: 8746264 +Size: 8661752 Package: kubectl -Version: 1.17.15-00 -Installed-Size: 42445 +Version: 1.16.8-00 +Installed-Size: 41897 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.15-00_amd64_a95cf0578f760709d85eabf9ea490e19e799697d4cb95be9b6f1e3e2f8d97c51.deb +Filename: pool/kubectl_1.16.8-00_amd64_cb478f550fcf7e6344dee58edf6f2fadcac7a51bf70e74d9c54212e7cbc41674.deb Priority: optional -SHA256: a95cf0578f760709d85eabf9ea490e19e799697d4cb95be9b6f1e3e2f8d97c51 +SHA256: cb478f550fcf7e6344dee58edf6f2fadcac7a51bf70e74d9c54212e7cbc41674 Section: misc -Size: 8748056 +Size: 8659268 Package: kubectl -Version: 1.17.16-00 -Installed-Size: 42445 +Version: 1.16.9-00 +Installed-Size: 41953 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.16-00_amd64_789cfc96a6166b7ddf49558c3e29f61418ea10c7e87784264377b290f2181753.deb +Filename: pool/kubectl_1.16.9-00_amd64_fc38c1497bd35b57f0c7aeabb5881b75432713036385668f64ea9ef98e1ee7be.deb Priority: optional -SHA256: 789cfc96a6166b7ddf49558c3e29f61418ea10c7e87784264377b290f2181753 +SHA256: fc38c1497bd35b57f0c7aeabb5881b75432713036385668f64ea9ef98e1ee7be Section: misc -Size: 8743704 +Size: 8668764 Package: kubectl -Version: 1.17.17-00 -Installed-Size: 42445 +Version: 1.16.10-00 +Installed-Size: 41957 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.17.17-00_amd64_82665c2c73e735bac8b6aab2cb0e5bad307dfa4839001b2adcff81de45e90dbf.deb +Filename: pool/kubectl_1.16.10-00_amd64_d0dbfd8a575114d913b7483c3a1c21151d7e6e36ab3f7c7202be7bce0cc44235.deb Priority: optional -SHA256: 82665c2c73e735bac8b6aab2cb0e5bad307dfa4839001b2adcff81de45e90dbf +SHA256: d0dbfd8a575114d913b7483c3a1c21151d7e6e36ab3f7c7202be7bce0cc44235 Section: misc -Size: 8745736 +Size: 8669968 Package: kubectl -Version: 1.18.0-00 -Installed-Size: 42997 +Version: 1.16.11-00 +Installed-Size: 41957 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.0-00_amd64_265ff656100b82f5f3d80f5c8ab12f8a8c1c54c72e509e4d2612dec464eb64f6.deb +Filename: pool/kubectl_1.16.11-00_amd64_7c4a858c0ce863c35ee7c1727bc52296db51c881702701cb70b62e607e885ab3.deb Priority: optional -SHA256: 265ff656100b82f5f3d80f5c8ab12f8a8c1c54c72e509e4d2612dec464eb64f6 +SHA256: 7c4a858c0ce863c35ee7c1727bc52296db51c881702701cb70b62e607e885ab3 Section: misc -Size: 8822028 +Size: 8667672 Package: kubectl -Version: 1.18.1-00 -Installed-Size: 43001 +Version: 1.16.11-01 +Installed-Size: 41957 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.1-00_amd64_2da6bd3f4adcc528266a0fe127135c2412710eb476b851a44e6405ec0bb0cc0f.deb +Filename: pool/kubectl_1.16.11-01_amd64_7ec912d2a9db49c38b172060b1743ecbb8f35623b48274fc64ca98bb61401320.deb Priority: optional -SHA256: 2da6bd3f4adcc528266a0fe127135c2412710eb476b851a44e6405ec0bb0cc0f +SHA256: 7ec912d2a9db49c38b172060b1743ecbb8f35623b48274fc64ca98bb61401320 Section: misc -Size: 8819564 +Size: 8667508 Package: kubectl -Version: 1.18.2-00 -Installed-Size: 43005 +Version: 1.16.12-00 +Installed-Size: 41953 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.2-00_amd64_89df64c5d736fa79e5a9754d94541b02c29f52d6d5720dbb3d58e22406a969f5.deb +Filename: pool/kubectl_1.16.12-00_amd64_e5f0143fa40bc479d23a25cc0f0d1fbbc6cf63e843e2d44480b1defd8be3799a.deb Priority: optional -SHA256: 89df64c5d736fa79e5a9754d94541b02c29f52d6d5720dbb3d58e22406a969f5 +SHA256: e5f0143fa40bc479d23a25cc0f0d1fbbc6cf63e843e2d44480b1defd8be3799a Section: misc -Size: 8825072 +Size: 8668564 Package: kubectl -Version: 1.18.3-00 -Installed-Size: 43005 +Version: 1.16.13-00 +Installed-Size: 41957 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.3-00_amd64_e839fc255a414a087fbf8a380ca7062953a3dacc6633bafa935ac0281f7846d1.deb +Filename: pool/kubectl_1.16.13-00_amd64_adffae4ae9512edc6cac76e27546e9dc37cdf87ec8e5fb4f8660e6147ecee70e.deb Priority: optional -SHA256: e839fc255a414a087fbf8a380ca7062953a3dacc6633bafa935ac0281f7846d1 +SHA256: adffae4ae9512edc6cac76e27546e9dc37cdf87ec8e5fb4f8660e6147ecee70e Section: misc -Size: 8820752 +Size: 8665220 Package: kubectl -Version: 1.18.4-00 -Installed-Size: 43005 +Version: 1.16.14-00 +Installed-Size: 41965 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.4-00_amd64_cc334c76c233820fd27906a86bb64fe7f833a629f6a08303f344dc7e76c0d66c.deb +Filename: pool/kubectl_1.16.14-00_amd64_c20d474a4f05d03e93f82fb412bbf5101c39d0d09abfd2a839b9dcb0f0c3474e.deb Priority: optional -SHA256: cc334c76c233820fd27906a86bb64fe7f833a629f6a08303f344dc7e76c0d66c +SHA256: c20d474a4f05d03e93f82fb412bbf5101c39d0d09abfd2a839b9dcb0f0c3474e Section: misc -Size: 8819364 +Size: 8666852 Package: kubectl -Version: 1.18.4-01 -Installed-Size: 43005 +Version: 1.16.15-00 +Installed-Size: 41965 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.4-01_amd64_2d3ac24ce077f88c29354b24489bab5e3d08dda2ba58079daef0be13a4ac3f4b.deb +Filename: pool/kubectl_1.16.15-00_amd64_f89b8cf6cf8c005624fd0e5a62007a9017d484569d71f2ec7f1a426c753c33c6.deb Priority: optional -SHA256: 2d3ac24ce077f88c29354b24489bab5e3d08dda2ba58079daef0be13a4ac3f4b +SHA256: f89b8cf6cf8c005624fd0e5a62007a9017d484569d71f2ec7f1a426c753c33c6 Section: misc -Size: 8821840 +Size: 8670916 Package: kubectl -Version: 1.18.5-00 -Installed-Size: 43001 +Version: 1.17.0-00 +Installed-Size: 42481 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.5-00_amd64_0c5eeec168c9279b1c837cbae907e44795ce2425d1b85be3fd7e38d7f0c86e50.deb +Filename: pool/kubectl_1.17.0-00_amd64_fba222a6fd264d10f11a1a5fdf676ad4b3d41aebe9c23dae5155ef20d0a964dd.deb Priority: optional -SHA256: 0c5eeec168c9279b1c837cbae907e44795ce2425d1b85be3fd7e38d7f0c86e50 +SHA256: fba222a6fd264d10f11a1a5fdf676ad4b3d41aebe9c23dae5155ef20d0a964dd Section: misc -Size: 8821620 +Size: 8741658 Package: kubectl -Version: 1.18.6-00 -Installed-Size: 43009 +Version: 1.17.1-00 +Installed-Size: 42477 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.6-00_amd64_339673592303e280949d52b2f4e842ad365529a5d656dd9f6483517651e2ded8.deb +Filename: pool/kubectl_1.17.1-00_amd64_0dc19318c9114db2931552bb8bf650a14227a9603cb73fe0917ac7868ec7fcf0.deb Priority: optional -SHA256: 339673592303e280949d52b2f4e842ad365529a5d656dd9f6483517651e2ded8 +SHA256: 0dc19318c9114db2931552bb8bf650a14227a9603cb73fe0917ac7868ec7fcf0 Section: misc -Size: 8825628 +Size: 8740408 Package: kubectl -Version: 1.18.8-00 -Installed-Size: 43013 +Version: 1.17.2-00 +Installed-Size: 42477 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.8-00_amd64_807b3cda6beed6876e32ca38a838a0ae505cdd6703ed525f17f0f8d1ce10a36a.deb +Filename: pool/kubectl_1.17.2-00_amd64_4cf57f0a5445409293963fddc279fbba9f48c6c280fa27479651d1908848b96a.deb Priority: optional -SHA256: 807b3cda6beed6876e32ca38a838a0ae505cdd6703ed525f17f0f8d1ce10a36a +SHA256: 4cf57f0a5445409293963fddc279fbba9f48c6c280fa27479651d1908848b96a Section: misc -Size: 8827072 +Size: 8738116 Package: kubectl -Version: 1.18.9-00 -Installed-Size: 43017 +Version: 1.17.3-00 +Installed-Size: 42485 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.9-00_amd64_3804ac2fe51f09c5d2fae15ab3c39abf2beb6babdb6e45d811a32100a5e24fdb.deb +Filename: pool/kubectl_1.17.3-00_amd64_289913506f67535270a8ab4d9b30e6ece825440bc00a225295915741946c7bc6.deb Priority: optional -SHA256: 3804ac2fe51f09c5d2fae15ab3c39abf2beb6babdb6e45d811a32100a5e24fdb +SHA256: 289913506f67535270a8ab4d9b30e6ece825440bc00a225295915741946c7bc6 Section: misc -Size: 8823944 +Size: 8740412 Package: kubectl -Version: 1.18.10-00 -Installed-Size: 43017 +Version: 1.17.4-00 +Installed-Size: 42485 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.10-00_amd64_9672537d486bf05bee239d054f37837829e4bcd3180f27d5a5ba29b2b976f37c.deb +Filename: pool/kubectl_1.17.4-00_amd64_129fe02893f0eb76a2b653c2edc0fb6e67b0e6f3b4d3b8045e0447db751df3e1.deb Priority: optional -SHA256: 9672537d486bf05bee239d054f37837829e4bcd3180f27d5a5ba29b2b976f37c +SHA256: 129fe02893f0eb76a2b653c2edc0fb6e67b0e6f3b4d3b8045e0447db751df3e1 Section: misc -Size: 8823692 +Size: 8740868 Package: kubectl -Version: 1.18.12-00 -Installed-Size: 43017 +Version: 1.17.5-00 +Installed-Size: 42493 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.12-00_amd64_b7e6d452dfeeb286ea77724d54c824c49a319570f7307d275b201dfcc039b53c.deb +Filename: pool/kubectl_1.17.5-00_amd64_e6db6f04c64b9c5a5ab21a9f7b73b614e1a2b82040986eb377f8c35b71d5b30b.deb Priority: optional -SHA256: b7e6d452dfeeb286ea77724d54c824c49a319570f7307d275b201dfcc039b53c +SHA256: e6db6f04c64b9c5a5ab21a9f7b73b614e1a2b82040986eb377f8c35b71d5b30b Section: misc -Size: 8825288 +Size: 8740992 Package: kubectl -Version: 1.18.13-00 -Installed-Size: 42961 +Version: 1.17.6-00 +Installed-Size: 42493 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.13-00_amd64_53662900cb7ee88bd4e5e19bd6352b16f707571dcbc5c8d9c4dd9b04a77febac.deb +Filename: pool/kubectl_1.17.6-00_amd64_afde7608a4c4ec4f48ec4eb9f82758b5226ac8f64b771843653f7c43bac543c7.deb Priority: optional -SHA256: 53662900cb7ee88bd4e5e19bd6352b16f707571dcbc5c8d9c4dd9b04a77febac +SHA256: afde7608a4c4ec4f48ec4eb9f82758b5226ac8f64b771843653f7c43bac543c7 Section: misc -Size: 8824416 +Size: 8741412 Package: kubectl -Version: 1.18.14-00 -Installed-Size: 42961 +Version: 1.17.7-00 +Installed-Size: 42489 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.14-00_amd64_909b72e57962f5e81d25cb49f3665423546989f254993f4d5350405ed6cf1cae.deb +Filename: pool/kubectl_1.17.7-00_amd64_603e8b2c3a5764b23c0e57a9c7982d77db9ee204bfd6dd3736f8c76a684366c0.deb Priority: optional -SHA256: 909b72e57962f5e81d25cb49f3665423546989f254993f4d5350405ed6cf1cae +SHA256: 603e8b2c3a5764b23c0e57a9c7982d77db9ee204bfd6dd3736f8c76a684366c0 Section: misc -Size: 8827068 +Size: 8743708 Package: kubectl -Version: 1.18.15-00 -Installed-Size: 42961 +Version: 1.17.7-01 +Installed-Size: 42489 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.15-00_amd64_13445f48119c062469800714ad38c344566be9e8cbde03de7e4d4c8248be798a.deb +Filename: pool/kubectl_1.17.7-01_amd64_1fd85cec31226ccfe74913c19008d8e990a0fd03107ad54fa26cb2c6d0d4aa45.deb Priority: optional -SHA256: 13445f48119c062469800714ad38c344566be9e8cbde03de7e4d4c8248be798a +SHA256: 1fd85cec31226ccfe74913c19008d8e990a0fd03107ad54fa26cb2c6d0d4aa45 Section: misc -Size: 8824024 +Size: 8742696 Package: kubectl -Version: 1.18.16-00 -Installed-Size: 42961 +Version: 1.17.8-00 +Installed-Size: 42489 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.16-00_amd64_30d6c67ff8ac1cc572a04fa31f927bd956962c4b23e9b5d7d0ea3064ede8c209.deb +Filename: pool/kubectl_1.17.8-00_amd64_a08f4339cc3c1d47aa40b2ab921482df325ce946996cd228f155e7a778a8c36f.deb Priority: optional -SHA256: 30d6c67ff8ac1cc572a04fa31f927bd956962c4b23e9b5d7d0ea3064ede8c209 +SHA256: a08f4339cc3c1d47aa40b2ab921482df325ce946996cd228f155e7a778a8c36f Section: misc -Size: 8826280 +Size: 8742676 Package: kubectl -Version: 1.18.17-00 -Installed-Size: 42961 +Version: 1.17.9-00 +Installed-Size: 42489 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.17-00_amd64_5f31549c6670aa0ca360da9284cc23f3f1eb8984e9639f4ba2485e3acd46de43.deb +Filename: pool/kubectl_1.17.9-00_amd64_2de3c61a6dacc5add09406cead2da130ebecf65611662d114f4bcfff0afcc26a.deb Priority: optional -SHA256: 5f31549c6670aa0ca360da9284cc23f3f1eb8984e9639f4ba2485e3acd46de43 +SHA256: 2de3c61a6dacc5add09406cead2da130ebecf65611662d114f4bcfff0afcc26a Section: misc -Size: 8825280 +Size: 8745424 Package: kubectl -Version: 1.18.18-00 -Installed-Size: 42933 -Maintainer: Kubernetes Authors +Version: 1.17.11-00 +Installed-Size: 42501 +Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.18-00_amd64_8f6c5cc11caab4a7a95f181895cf3d50169cebd06ccd25aecbee9467e9264ce6.deb +Filename: pool/kubectl_1.17.11-00_amd64_f77d54d98ad7898213cf673b61e413b1c6cb391413941d6397f86c14e038b9cf.deb Priority: optional -SHA256: 8f6c5cc11caab4a7a95f181895cf3d50169cebd06ccd25aecbee9467e9264ce6 +SHA256: f77d54d98ad7898213cf673b61e413b1c6cb391413941d6397f86c14e038b9cf Section: misc -Size: 8829932 +Size: 8745888 Package: kubectl -Version: 1.18.19-00 -Installed-Size: 42937 +Version: 1.17.12-00 +Installed-Size: 42501 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.19-00_amd64_aad248a1d037cf62bee0c59f14133190bfcfb3073a7c8515c7b2fa04eb7fa5bf.deb +Filename: pool/kubectl_1.17.12-00_amd64_52c9b4afd5b48099da312f8ec84c2a69fc856591df33a66793ac32ad1d2b06a1.deb Priority: optional -SHA256: aad248a1d037cf62bee0c59f14133190bfcfb3073a7c8515c7b2fa04eb7fa5bf +SHA256: 52c9b4afd5b48099da312f8ec84c2a69fc856591df33a66793ac32ad1d2b06a1 Section: misc -Size: 8828104 +Size: 8744236 Package: kubectl -Version: 1.18.20-00 -Installed-Size: 42933 +Version: 1.17.13-00 +Installed-Size: 42505 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.18.20-00_amd64_f14bdbd4082c8d2a8bb76d83bddf016d737a163ddd9d07abc44a4840f07cf6e0.deb +Filename: pool/kubectl_1.17.13-00_amd64_8675ffaf06df775f075e211674c9cd8859f109e0a2888caaa625522a8cb639a2.deb Priority: optional -SHA256: f14bdbd4082c8d2a8bb76d83bddf016d737a163ddd9d07abc44a4840f07cf6e0 +SHA256: 8675ffaf06df775f075e211674c9cd8859f109e0a2888caaa625522a8cb639a2 Section: misc -Size: 8827192 +Size: 8744500 Package: kubectl -Version: 1.19.0-00 -Installed-Size: 42001 +Version: 1.17.14-00 +Installed-Size: 42501 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.0-00_amd64_15f7e0e15f88aaffe4c4e2e48eaac84f68a68243fa8a5299e96b832c4a70a9da.deb +Filename: pool/kubectl_1.17.14-00_amd64_deb51a90ebe1d243b853f96083ae494a74017a1c334f37ad5d4608d57b5cd8ad.deb Priority: optional -SHA256: 15f7e0e15f88aaffe4c4e2e48eaac84f68a68243fa8a5299e96b832c4a70a9da +SHA256: deb51a90ebe1d243b853f96083ae494a74017a1c334f37ad5d4608d57b5cd8ad Section: misc -Size: 8349228 +Size: 8746264 Package: kubectl -Version: 1.19.1-00 -Installed-Size: 42001 +Version: 1.17.15-00 +Installed-Size: 42445 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.1-00_amd64_fa713d10123fdbc0cbbe5c16892d1aa0faef751aaf562369d4c33e2e640b840e.deb +Filename: pool/kubectl_1.17.15-00_amd64_a95cf0578f760709d85eabf9ea490e19e799697d4cb95be9b6f1e3e2f8d97c51.deb Priority: optional -SHA256: fa713d10123fdbc0cbbe5c16892d1aa0faef751aaf562369d4c33e2e640b840e +SHA256: a95cf0578f760709d85eabf9ea490e19e799697d4cb95be9b6f1e3e2f8d97c51 Section: misc -Size: 8348244 +Size: 8748056 Package: kubectl -Version: 1.19.2-00 -Installed-Size: 42001 +Version: 1.17.16-00 +Installed-Size: 42445 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.2-00_amd64_ca9f3550ad7f8b1a785b670284a18a570b15be8c2b60b62822c51fdf51633bdb.deb +Filename: pool/kubectl_1.17.16-00_amd64_789cfc96a6166b7ddf49558c3e29f61418ea10c7e87784264377b290f2181753.deb Priority: optional -SHA256: ca9f3550ad7f8b1a785b670284a18a570b15be8c2b60b62822c51fdf51633bdb +SHA256: 789cfc96a6166b7ddf49558c3e29f61418ea10c7e87784264377b290f2181753 Section: misc -Size: 8348648 +Size: 8743704 Package: kubectl -Version: 1.19.3-00 -Installed-Size: 42001 +Version: 1.17.17-00 +Installed-Size: 42445 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.3-00_amd64_8b135a2c8ab59784a12ae239cdfd80989d7d08d1da4449522c475cea1025eaa3.deb +Filename: pool/kubectl_1.17.17-00_amd64_82665c2c73e735bac8b6aab2cb0e5bad307dfa4839001b2adcff81de45e90dbf.deb Priority: optional -SHA256: 8b135a2c8ab59784a12ae239cdfd80989d7d08d1da4449522c475cea1025eaa3 +SHA256: 82665c2c73e735bac8b6aab2cb0e5bad307dfa4839001b2adcff81de45e90dbf Section: misc -Size: 8349508 +Size: 8745736 Package: kubectl -Version: 1.19.4-00 -Installed-Size: 42001 +Version: 1.18.0-00 +Installed-Size: 42997 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.4-00_amd64_e3156a871df585ff38208745106c9f210dd95b0b5c16b3988b435e5e876dee45.deb +Filename: pool/kubectl_1.18.0-00_amd64_265ff656100b82f5f3d80f5c8ab12f8a8c1c54c72e509e4d2612dec464eb64f6.deb Priority: optional -SHA256: e3156a871df585ff38208745106c9f210dd95b0b5c16b3988b435e5e876dee45 +SHA256: 265ff656100b82f5f3d80f5c8ab12f8a8c1c54c72e509e4d2612dec464eb64f6 Section: misc -Size: 8346816 +Size: 8822028 Package: kubectl -Version: 1.19.5-00 -Installed-Size: 41949 +Version: 1.18.1-00 +Installed-Size: 43001 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.5-00_amd64_13810678f1ca75958d2d62fc72c6da07038d7239cdb6bf1c130d0fbb1ecab9e0.deb +Filename: pool/kubectl_1.18.1-00_amd64_2da6bd3f4adcc528266a0fe127135c2412710eb476b851a44e6405ec0bb0cc0f.deb Priority: optional -SHA256: 13810678f1ca75958d2d62fc72c6da07038d7239cdb6bf1c130d0fbb1ecab9e0 +SHA256: 2da6bd3f4adcc528266a0fe127135c2412710eb476b851a44e6405ec0bb0cc0f Section: misc -Size: 8349264 +Size: 8819564 Package: kubectl -Version: 1.19.6-00 -Installed-Size: 41949 +Version: 1.18.2-00 +Installed-Size: 43005 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.6-00_amd64_fd72cd41a4a63616382f808b089ecd0e94b5df38a9c8a2026ef94ceaae177d08.deb +Filename: pool/kubectl_1.18.2-00_amd64_89df64c5d736fa79e5a9754d94541b02c29f52d6d5720dbb3d58e22406a969f5.deb Priority: optional -SHA256: fd72cd41a4a63616382f808b089ecd0e94b5df38a9c8a2026ef94ceaae177d08 +SHA256: 89df64c5d736fa79e5a9754d94541b02c29f52d6d5720dbb3d58e22406a969f5 Section: misc -Size: 8349512 +Size: 8825072 Package: kubectl -Version: 1.19.7-00 -Installed-Size: 41949 +Version: 1.18.3-00 +Installed-Size: 43005 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.7-00_amd64_b565a2de5ce92794e89aac235887229f6a0894a3308559c27d2ebf84f00de417.deb +Filename: pool/kubectl_1.18.3-00_amd64_e839fc255a414a087fbf8a380ca7062953a3dacc6633bafa935ac0281f7846d1.deb Priority: optional -SHA256: b565a2de5ce92794e89aac235887229f6a0894a3308559c27d2ebf84f00de417 +SHA256: e839fc255a414a087fbf8a380ca7062953a3dacc6633bafa935ac0281f7846d1 Section: misc -Size: 8351120 +Size: 8820752 Package: kubectl -Version: 1.19.8-00 -Installed-Size: 41985 +Version: 1.18.4-00 +Installed-Size: 43005 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.8-00_amd64_571c417dec12d668de530885ad29a11f0d89b4f67a46087f8cff42c0770b1e73.deb +Filename: pool/kubectl_1.18.4-00_amd64_cc334c76c233820fd27906a86bb64fe7f833a629f6a08303f344dc7e76c0d66c.deb Priority: optional -SHA256: 571c417dec12d668de530885ad29a11f0d89b4f67a46087f8cff42c0770b1e73 +SHA256: cc334c76c233820fd27906a86bb64fe7f833a629f6a08303f344dc7e76c0d66c Section: misc -Size: 8352916 +Size: 8819364 Package: kubectl -Version: 1.19.9-00 -Installed-Size: 41985 +Version: 1.18.4-01 +Installed-Size: 43005 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.9-00_amd64_64bac111443df6c131f1cbf00f83738ac6d891f110535481aa8e91a938bd449e.deb +Filename: pool/kubectl_1.18.4-01_amd64_2d3ac24ce077f88c29354b24489bab5e3d08dda2ba58079daef0be13a4ac3f4b.deb Priority: optional -SHA256: 64bac111443df6c131f1cbf00f83738ac6d891f110535481aa8e91a938bd449e +SHA256: 2d3ac24ce077f88c29354b24489bab5e3d08dda2ba58079daef0be13a4ac3f4b Section: misc -Size: 8353376 +Size: 8821840 Package: kubectl -Version: 1.19.10-00 -Installed-Size: 41945 +Version: 1.18.5-00 +Installed-Size: 43001 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.10-00_amd64_f487670d52773adbfc807b247bf05af8fe74e882a46ea783ee20ca03e320e24d.deb +Filename: pool/kubectl_1.18.5-00_amd64_0c5eeec168c9279b1c837cbae907e44795ce2425d1b85be3fd7e38d7f0c86e50.deb Priority: optional -SHA256: f487670d52773adbfc807b247bf05af8fe74e882a46ea783ee20ca03e320e24d +SHA256: 0c5eeec168c9279b1c837cbae907e44795ce2425d1b85be3fd7e38d7f0c86e50 Section: misc -Size: 8348936 +Size: 8821620 Package: kubectl -Version: 1.19.11-00 -Installed-Size: 41945 +Version: 1.18.6-00 +Installed-Size: 43009 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.11-00_amd64_7e7a1e296a1ea9714d24d2d15e3de9da2a9f29d4ce224709581fc3c6dca72bea.deb +Filename: pool/kubectl_1.18.6-00_amd64_339673592303e280949d52b2f4e842ad365529a5d656dd9f6483517651e2ded8.deb Priority: optional -SHA256: 7e7a1e296a1ea9714d24d2d15e3de9da2a9f29d4ce224709581fc3c6dca72bea +SHA256: 339673592303e280949d52b2f4e842ad365529a5d656dd9f6483517651e2ded8 Section: misc -Size: 8348720 +Size: 8825628 Package: kubectl -Version: 1.19.12-00 -Installed-Size: 41949 +Version: 1.18.8-00 +Installed-Size: 43013 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.12-00_amd64_12d0a6279f11748818f33208b16f1002eb3177268b411407b6060bcef9addaa9.deb +Filename: pool/kubectl_1.18.8-00_amd64_807b3cda6beed6876e32ca38a838a0ae505cdd6703ed525f17f0f8d1ce10a36a.deb Priority: optional -SHA256: 12d0a6279f11748818f33208b16f1002eb3177268b411407b6060bcef9addaa9 +SHA256: 807b3cda6beed6876e32ca38a838a0ae505cdd6703ed525f17f0f8d1ce10a36a Section: misc -Size: 8350136 +Size: 8827072 Package: kubectl -Version: 1.19.13-00 -Installed-Size: 41949 +Version: 1.18.9-00 +Installed-Size: 43017 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.13-00_amd64_f1c0513ac0abe88bf747eb458725cd7c5a0ebf587e930cefb900d5f41226a715.deb +Filename: pool/kubectl_1.18.9-00_amd64_3804ac2fe51f09c5d2fae15ab3c39abf2beb6babdb6e45d811a32100a5e24fdb.deb Priority: optional -SHA256: f1c0513ac0abe88bf747eb458725cd7c5a0ebf587e930cefb900d5f41226a715 +SHA256: 3804ac2fe51f09c5d2fae15ab3c39abf2beb6babdb6e45d811a32100a5e24fdb Section: misc -Size: 8349660 +Size: 8823944 Package: kubectl -Version: 1.19.14-00 -Installed-Size: 41949 +Version: 1.18.10-00 +Installed-Size: 43017 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.14-00_amd64_fe9b25520ef3561e2d0d2bf79823e14de20f1b35c0689caa3700f6996d5eaa94.deb +Filename: pool/kubectl_1.18.10-00_amd64_9672537d486bf05bee239d054f37837829e4bcd3180f27d5a5ba29b2b976f37c.deb Priority: optional -SHA256: fe9b25520ef3561e2d0d2bf79823e14de20f1b35c0689caa3700f6996d5eaa94 +SHA256: 9672537d486bf05bee239d054f37837829e4bcd3180f27d5a5ba29b2b976f37c Section: misc -Size: 8353620 +Size: 8823692 Package: kubectl -Version: 1.19.15-00 -Installed-Size: 41949 +Version: 1.18.12-00 +Installed-Size: 43017 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.15-00_amd64_e08472d82c8524cda3ee144f9dbccdac61b6846beb7aedb56a5e08cbe36de187.deb +Filename: pool/kubectl_1.18.12-00_amd64_b7e6d452dfeeb286ea77724d54c824c49a319570f7307d275b201dfcc039b53c.deb Priority: optional -SHA256: e08472d82c8524cda3ee144f9dbccdac61b6846beb7aedb56a5e08cbe36de187 +SHA256: b7e6d452dfeeb286ea77724d54c824c49a319570f7307d275b201dfcc039b53c Section: misc -Size: 8350028 +Size: 8825288 Package: kubectl -Version: 1.19.16-00 -Installed-Size: 41949 +Version: 1.18.13-00 +Installed-Size: 42961 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.19.16-00_amd64_a0464addb40ac50561dc2aafea66a36880be477a39a82f4d7a2f3fc4507d5b68.deb +Filename: pool/kubectl_1.18.13-00_amd64_53662900cb7ee88bd4e5e19bd6352b16f707571dcbc5c8d9c4dd9b04a77febac.deb Priority: optional -SHA256: a0464addb40ac50561dc2aafea66a36880be477a39a82f4d7a2f3fc4507d5b68 +SHA256: 53662900cb7ee88bd4e5e19bd6352b16f707571dcbc5c8d9c4dd9b04a77febac Section: misc -Size: 8352128 +Size: 8824416 Package: kubectl -Version: 1.20.0-00 -Installed-Size: 39293 +Version: 1.18.14-00 +Installed-Size: 42961 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.0-00_amd64_22249e67744e91e661b136f1b5f935d9bc540d8c84282c0da97d4fd3db0f8643.deb +Filename: pool/kubectl_1.18.14-00_amd64_909b72e57962f5e81d25cb49f3665423546989f254993f4d5350405ed6cf1cae.deb Priority: optional -SHA256: 22249e67744e91e661b136f1b5f935d9bc540d8c84282c0da97d4fd3db0f8643 +SHA256: 909b72e57962f5e81d25cb49f3665423546989f254993f4d5350405ed6cf1cae Section: misc -Size: 7941604 +Size: 8827068 Package: kubectl -Version: 1.20.1-00 -Installed-Size: 39293 +Version: 1.18.15-00 +Installed-Size: 42961 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.1-00_amd64_b927311062e6a4610d9ac3bc8560457ab23fbd697a3052c394a1d7cc9e46a17d.deb +Filename: pool/kubectl_1.18.15-00_amd64_13445f48119c062469800714ad38c344566be9e8cbde03de7e4d4c8248be798a.deb Priority: optional -SHA256: b927311062e6a4610d9ac3bc8560457ab23fbd697a3052c394a1d7cc9e46a17d +SHA256: 13445f48119c062469800714ad38c344566be9e8cbde03de7e4d4c8248be798a Section: misc -Size: 7947908 +Size: 8824024 Package: kubectl -Version: 1.20.2-00 -Installed-Size: 39293 +Version: 1.18.16-00 +Installed-Size: 42961 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.2-00_amd64_bed53fa29a61576c5c90961efcf8670107035523d468dd6b02cdd602b64a2db3.deb +Filename: pool/kubectl_1.18.16-00_amd64_30d6c67ff8ac1cc572a04fa31f927bd956962c4b23e9b5d7d0ea3064ede8c209.deb Priority: optional -SHA256: bed53fa29a61576c5c90961efcf8670107035523d468dd6b02cdd602b64a2db3 +SHA256: 30d6c67ff8ac1cc572a04fa31f927bd956962c4b23e9b5d7d0ea3064ede8c209 Section: misc -Size: 7940496 +Size: 8826280 Package: kubectl -Version: 1.20.4-00 -Installed-Size: 39325 +Version: 1.18.17-00 +Installed-Size: 42961 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.4-00_amd64_c95602fc7423a2b371828e82a5148cded2255cce061a5182d0a1ef88b7e16dca.deb +Filename: pool/kubectl_1.18.17-00_amd64_5f31549c6670aa0ca360da9284cc23f3f1eb8984e9639f4ba2485e3acd46de43.deb Priority: optional -SHA256: c95602fc7423a2b371828e82a5148cded2255cce061a5182d0a1ef88b7e16dca +SHA256: 5f31549c6670aa0ca360da9284cc23f3f1eb8984e9639f4ba2485e3acd46de43 Section: misc -Size: 7943952 +Size: 8825280 Package: kubectl -Version: 1.20.5-00 -Installed-Size: 39325 +Version: 1.18.18-00 +Installed-Size: 42933 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.5-00_amd64_9d55573b5d4b0d5b84e229fb67160820eab6e120dad956ddbf98763a6f834a14.deb +Filename: pool/kubectl_1.18.18-00_amd64_8f6c5cc11caab4a7a95f181895cf3d50169cebd06ccd25aecbee9467e9264ce6.deb Priority: optional -SHA256: 9d55573b5d4b0d5b84e229fb67160820eab6e120dad956ddbf98763a6f834a14 +SHA256: 8f6c5cc11caab4a7a95f181895cf3d50169cebd06ccd25aecbee9467e9264ce6 Section: misc -Size: 7944960 +Size: 8829932 Package: kubectl -Version: 1.20.6-00 -Installed-Size: 39281 +Version: 1.18.19-00 +Installed-Size: 42937 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.6-00_amd64_cd47d4df6bf7805a6d33280975c19e009a2a1b6db8f223b4a16a5c34a1409f01.deb +Filename: pool/kubectl_1.18.19-00_amd64_aad248a1d037cf62bee0c59f14133190bfcfb3073a7c8515c7b2fa04eb7fa5bf.deb Priority: optional -SHA256: cd47d4df6bf7805a6d33280975c19e009a2a1b6db8f223b4a16a5c34a1409f01 +SHA256: aad248a1d037cf62bee0c59f14133190bfcfb3073a7c8515c7b2fa04eb7fa5bf Section: misc -Size: 7941520 +Size: 8828104 Package: kubectl -Version: 1.20.7-00 -Installed-Size: 39289 +Version: 1.18.20-00 +Installed-Size: 42933 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.7-00_amd64_660b5719f29bfb1591382625055acedbd418558073e3fc31b1092c0885522951.deb +Filename: pool/kubectl_1.18.20-00_amd64_f14bdbd4082c8d2a8bb76d83bddf016d737a163ddd9d07abc44a4840f07cf6e0.deb Priority: optional -SHA256: 660b5719f29bfb1591382625055acedbd418558073e3fc31b1092c0885522951 +SHA256: f14bdbd4082c8d2a8bb76d83bddf016d737a163ddd9d07abc44a4840f07cf6e0 Section: misc -Size: 7939432 +Size: 8827192 Package: kubectl -Version: 1.20.8-00 -Installed-Size: 39289 +Version: 1.19.0-00 +Installed-Size: 42001 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.8-00_amd64_28419496c93e687e4465f269adece02d185d5d14bc03877cff6aef140f7d0ca2.deb +Filename: pool/kubectl_1.19.0-00_amd64_15f7e0e15f88aaffe4c4e2e48eaac84f68a68243fa8a5299e96b832c4a70a9da.deb Priority: optional -SHA256: 28419496c93e687e4465f269adece02d185d5d14bc03877cff6aef140f7d0ca2 +SHA256: 15f7e0e15f88aaffe4c4e2e48eaac84f68a68243fa8a5299e96b832c4a70a9da Section: misc -Size: 7940080 +Size: 8349228 Package: kubectl -Version: 1.20.9-00 -Installed-Size: 39293 +Version: 1.19.1-00 +Installed-Size: 42001 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.9-00_amd64_a287ee72dadb97bf9bfb4a4f99f0b2debbc7f1266d17501e0b34c1afbf50f3ce.deb +Filename: pool/kubectl_1.19.1-00_amd64_fa713d10123fdbc0cbbe5c16892d1aa0faef751aaf562369d4c33e2e640b840e.deb Priority: optional -SHA256: a287ee72dadb97bf9bfb4a4f99f0b2debbc7f1266d17501e0b34c1afbf50f3ce +SHA256: fa713d10123fdbc0cbbe5c16892d1aa0faef751aaf562369d4c33e2e640b840e Section: misc -Size: 7938840 +Size: 8348244 Package: kubectl -Version: 1.20.10-00 -Installed-Size: 39289 +Version: 1.19.2-00 +Installed-Size: 42001 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.10-00_amd64_7cb5e3c93dfcd4917f92128ae17ccfadda435b20dda81f13d3b88ad2043f5e36.deb +Filename: pool/kubectl_1.19.2-00_amd64_ca9f3550ad7f8b1a785b670284a18a570b15be8c2b60b62822c51fdf51633bdb.deb Priority: optional -SHA256: 7cb5e3c93dfcd4917f92128ae17ccfadda435b20dda81f13d3b88ad2043f5e36 +SHA256: ca9f3550ad7f8b1a785b670284a18a570b15be8c2b60b62822c51fdf51633bdb Section: misc -Size: 7939896 +Size: 8348648 Package: kubectl -Version: 1.20.11-00 -Installed-Size: 39289 +Version: 1.19.3-00 +Installed-Size: 42001 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.11-00_amd64_35c14b5f2b04eceb24061f87f0e8644b07b25146015228ff3f7a654c90f753ba.deb +Filename: pool/kubectl_1.19.3-00_amd64_8b135a2c8ab59784a12ae239cdfd80989d7d08d1da4449522c475cea1025eaa3.deb Priority: optional -SHA256: 35c14b5f2b04eceb24061f87f0e8644b07b25146015228ff3f7a654c90f753ba +SHA256: 8b135a2c8ab59784a12ae239cdfd80989d7d08d1da4449522c475cea1025eaa3 Section: misc -Size: 7940624 +Size: 8349508 Package: kubectl -Version: 1.20.12-00 -Installed-Size: 39289 +Version: 1.19.4-00 +Installed-Size: 42001 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.12-00_amd64_caa48286cd8ce932a25df202ec8c9d6d75ebf33e88e86bf4c41321238d08b20c.deb +Filename: pool/kubectl_1.19.4-00_amd64_e3156a871df585ff38208745106c9f210dd95b0b5c16b3988b435e5e876dee45.deb Priority: optional -SHA256: caa48286cd8ce932a25df202ec8c9d6d75ebf33e88e86bf4c41321238d08b20c +SHA256: e3156a871df585ff38208745106c9f210dd95b0b5c16b3988b435e5e876dee45 Section: misc -Size: 7939512 +Size: 8346816 Package: kubectl -Version: 1.20.13-00 -Installed-Size: 39305 +Version: 1.19.5-00 +Installed-Size: 41949 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.13-00_amd64_c57df2e8f9a2e0c90381c13ef33bb25f14c0cb186ee8bce4acdfd36fa989ad39.deb +Filename: pool/kubectl_1.19.5-00_amd64_13810678f1ca75958d2d62fc72c6da07038d7239cdb6bf1c130d0fbb1ecab9e0.deb Priority: optional -SHA256: c57df2e8f9a2e0c90381c13ef33bb25f14c0cb186ee8bce4acdfd36fa989ad39 +SHA256: 13810678f1ca75958d2d62fc72c6da07038d7239cdb6bf1c130d0fbb1ecab9e0 Section: misc -Size: 7940832 +Size: 8349264 Package: kubectl -Version: 1.20.14-00 -Installed-Size: 39305 +Version: 1.19.6-00 +Installed-Size: 41949 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.14-00_amd64_9ac0231d9b6c3f22d2a5be92837256b3ce17b8829dc4c430402f524e603ad643.deb +Filename: pool/kubectl_1.19.6-00_amd64_fd72cd41a4a63616382f808b089ecd0e94b5df38a9c8a2026ef94ceaae177d08.deb Priority: optional -SHA256: 9ac0231d9b6c3f22d2a5be92837256b3ce17b8829dc4c430402f524e603ad643 +SHA256: fd72cd41a4a63616382f808b089ecd0e94b5df38a9c8a2026ef94ceaae177d08 Section: misc -Size: 7943688 +Size: 8349512 Package: kubectl -Version: 1.20.15-00 -Installed-Size: 39305 +Version: 1.19.7-00 +Installed-Size: 41949 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.20.15-00_amd64_80a863a434987db56c30901d54627efe4f9fbe712cc6befc61c716c1ead4680d.deb +Filename: pool/kubectl_1.19.7-00_amd64_b565a2de5ce92794e89aac235887229f6a0894a3308559c27d2ebf84f00de417.deb Priority: optional -SHA256: 80a863a434987db56c30901d54627efe4f9fbe712cc6befc61c716c1ead4680d +SHA256: b565a2de5ce92794e89aac235887229f6a0894a3308559c27d2ebf84f00de417 Section: misc -Size: 7941276 +Size: 8351120 Package: kubectl -Version: 1.21.0-00 -Installed-Size: 45353 +Version: 1.19.8-00 +Installed-Size: 41985 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.0-00_amd64_7f0440537bc24f3c0911719c16b26d521ce54b0d5adfbe08fb51fa323dec0e42.deb +Filename: pool/kubectl_1.19.8-00_amd64_571c417dec12d668de530885ad29a11f0d89b4f67a46087f8cff42c0770b1e73.deb Priority: optional -SHA256: 7f0440537bc24f3c0911719c16b26d521ce54b0d5adfbe08fb51fa323dec0e42 +SHA256: 571c417dec12d668de530885ad29a11f0d89b4f67a46087f8cff42c0770b1e73 Section: misc -Size: 8972164 +Size: 8352916 Package: kubectl -Version: 1.21.1-00 -Installed-Size: 46473 +Version: 1.19.9-00 +Installed-Size: 41985 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.1-00_amd64_455c822f0bbcd5038be4eb85009b786826204755cb2e27222d7612e9159b8145.deb +Filename: pool/kubectl_1.19.9-00_amd64_64bac111443df6c131f1cbf00f83738ac6d891f110535481aa8e91a938bd449e.deb Priority: optional -SHA256: 455c822f0bbcd5038be4eb85009b786826204755cb2e27222d7612e9159b8145 +SHA256: 64bac111443df6c131f1cbf00f83738ac6d891f110535481aa8e91a938bd449e Section: misc -Size: 9224748 +Size: 8353376 Package: kubectl -Version: 1.21.2-00 -Installed-Size: 45337 +Version: 1.19.10-00 +Installed-Size: 41945 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.2-00_amd64_0626ce06c9df71499e63bcdca1b28f2d51ce4e6d2b608b179725242205a8a0a9.deb +Filename: pool/kubectl_1.19.10-00_amd64_f487670d52773adbfc807b247bf05af8fe74e882a46ea783ee20ca03e320e24d.deb Priority: optional -SHA256: 0626ce06c9df71499e63bcdca1b28f2d51ce4e6d2b608b179725242205a8a0a9 +SHA256: f487670d52773adbfc807b247bf05af8fe74e882a46ea783ee20ca03e320e24d Section: misc -Size: 8966136 +Size: 8348936 Package: kubectl -Version: 1.21.3-00 -Installed-Size: 45341 +Version: 1.19.11-00 +Installed-Size: 41945 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.3-00_amd64_6a0a5a71bc0b8779493f41726afd1df7c791693b447fed76a0e1eb118c75e9a8.deb +Filename: pool/kubectl_1.19.11-00_amd64_7e7a1e296a1ea9714d24d2d15e3de9da2a9f29d4ce224709581fc3c6dca72bea.deb Priority: optional -SHA256: 6a0a5a71bc0b8779493f41726afd1df7c791693b447fed76a0e1eb118c75e9a8 +SHA256: 7e7a1e296a1ea9714d24d2d15e3de9da2a9f29d4ce224709581fc3c6dca72bea Section: misc -Size: 8967196 +Size: 8348720 Package: kubectl -Version: 1.21.4-00 -Installed-Size: 45341 +Version: 1.19.12-00 +Installed-Size: 41949 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.4-00_amd64_c9a4e0582a5efee3d337c135e16587d056dcbbfff11e3219e566ac4f23b45899.deb +Filename: pool/kubectl_1.19.12-00_amd64_12d0a6279f11748818f33208b16f1002eb3177268b411407b6060bcef9addaa9.deb Priority: optional -SHA256: c9a4e0582a5efee3d337c135e16587d056dcbbfff11e3219e566ac4f23b45899 +SHA256: 12d0a6279f11748818f33208b16f1002eb3177268b411407b6060bcef9addaa9 Section: misc -Size: 8966400 +Size: 8350136 Package: kubectl -Version: 1.21.5-00 -Installed-Size: 45557 +Version: 1.19.13-00 +Installed-Size: 41949 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.5-00_amd64_c18de3e62688437e8eaa01441b57e361540b39c2339ab1b30e5584124d66e1e2.deb +Filename: pool/kubectl_1.19.13-00_amd64_f1c0513ac0abe88bf747eb458725cd7c5a0ebf587e930cefb900d5f41226a715.deb Priority: optional -SHA256: c18de3e62688437e8eaa01441b57e361540b39c2339ab1b30e5584124d66e1e2 +SHA256: f1c0513ac0abe88bf747eb458725cd7c5a0ebf587e930cefb900d5f41226a715 Section: misc -Size: 8994476 +Size: 8349660 Package: kubectl -Version: 1.21.6-00 -Installed-Size: 45557 +Version: 1.19.14-00 +Installed-Size: 41949 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.6-00_amd64_e059e2ec584193a485ba72aba3077120069d58aa026a252293ff3da481514dea.deb +Filename: pool/kubectl_1.19.14-00_amd64_fe9b25520ef3561e2d0d2bf79823e14de20f1b35c0689caa3700f6996d5eaa94.deb Priority: optional -SHA256: e059e2ec584193a485ba72aba3077120069d58aa026a252293ff3da481514dea +SHA256: fe9b25520ef3561e2d0d2bf79823e14de20f1b35c0689caa3700f6996d5eaa94 Section: misc -Size: 8997996 +Size: 8353620 Package: kubectl -Version: 1.21.7-00 -Installed-Size: 45581 +Version: 1.19.15-00 +Installed-Size: 41949 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.7-00_amd64_674e7f461b7afeeeeface7fafa1a7eb8b7b79ce7948828d7768b4f88d786562c.deb +Filename: pool/kubectl_1.19.15-00_amd64_e08472d82c8524cda3ee144f9dbccdac61b6846beb7aedb56a5e08cbe36de187.deb Priority: optional -SHA256: 674e7f461b7afeeeeface7fafa1a7eb8b7b79ce7948828d7768b4f88d786562c +SHA256: e08472d82c8524cda3ee144f9dbccdac61b6846beb7aedb56a5e08cbe36de187 Section: misc -Size: 9021644 +Size: 8350028 Package: kubectl -Version: 1.21.8-00 -Installed-Size: 45593 +Version: 1.19.16-00 +Installed-Size: 41949 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.8-00_amd64_7b8a020a04629467822dfd64ff24e04b3ad4f67edf0c0f92ad8af0449251ff76.deb +Filename: pool/kubectl_1.19.16-00_amd64_a0464addb40ac50561dc2aafea66a36880be477a39a82f4d7a2f3fc4507d5b68.deb Priority: optional -SHA256: 7b8a020a04629467822dfd64ff24e04b3ad4f67edf0c0f92ad8af0449251ff76 +SHA256: a0464addb40ac50561dc2aafea66a36880be477a39a82f4d7a2f3fc4507d5b68 Section: misc -Size: 9008248 +Size: 8352128 Package: kubectl -Version: 1.21.9-00 -Installed-Size: 45593 +Version: 1.20.0-00 +Installed-Size: 39293 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.9-00_amd64_76d3d14d9e5813a924287b649c257ee8aeda62226a3874525480b3f1e2829c7f.deb +Filename: pool/kubectl_1.20.0-00_amd64_22249e67744e91e661b136f1b5f935d9bc540d8c84282c0da97d4fd3db0f8643.deb Priority: optional -SHA256: 76d3d14d9e5813a924287b649c257ee8aeda62226a3874525480b3f1e2829c7f +SHA256: 22249e67744e91e661b136f1b5f935d9bc540d8c84282c0da97d4fd3db0f8643 Section: misc -Size: 9013168 +Size: 7941604 Package: kubectl -Version: 1.21.10-00 -Installed-Size: 45593 +Version: 1.20.1-00 +Installed-Size: 39293 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.21.10-00_amd64_7280c0c4ae9ad633c2f16590f07620e95c99d478ece421a97675fe77ea79e53d.deb +Filename: pool/kubectl_1.20.1-00_amd64_b927311062e6a4610d9ac3bc8560457ab23fbd697a3052c394a1d7cc9e46a17d.deb Priority: optional -SHA256: 7280c0c4ae9ad633c2f16590f07620e95c99d478ece421a97675fe77ea79e53d +SHA256: b927311062e6a4610d9ac3bc8560457ab23fbd697a3052c394a1d7cc9e46a17d Section: misc -Size: 9014640 +Size: 7947908 Package: kubectl -Version: 1.22.0-00 -Installed-Size: 45813 +Version: 1.20.2-00 +Installed-Size: 39293 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.22.0-00_amd64_052395d9ddf0364665cf7533aa66f96b310ec8a2b796d21c42f386684ad1fc56.deb +Filename: pool/kubectl_1.20.2-00_amd64_bed53fa29a61576c5c90961efcf8670107035523d468dd6b02cdd602b64a2db3.deb Priority: optional -SHA256: 052395d9ddf0364665cf7533aa66f96b310ec8a2b796d21c42f386684ad1fc56 +SHA256: bed53fa29a61576c5c90961efcf8670107035523d468dd6b02cdd602b64a2db3 Section: misc -Size: 9036708 +Size: 7940496 Package: kubectl -Version: 1.22.1-00 -Installed-Size: 45813 +Version: 1.20.4-00 +Installed-Size: 39325 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.22.1-00_amd64_2a00cd912bfa610fe4932bc0a557b2dd7b95b2c8bff9d001dc6b3d34323edf7d.deb +Filename: pool/kubectl_1.20.4-00_amd64_c95602fc7423a2b371828e82a5148cded2255cce061a5182d0a1ef88b7e16dca.deb Priority: optional -SHA256: 2a00cd912bfa610fe4932bc0a557b2dd7b95b2c8bff9d001dc6b3d34323edf7d +SHA256: c95602fc7423a2b371828e82a5148cded2255cce061a5182d0a1ef88b7e16dca Section: misc -Size: 9036044 +Size: 7943952 Package: kubectl -Version: 1.22.2-00 -Installed-Size: 45813 +Version: 1.20.5-00 +Installed-Size: 39325 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.22.2-00_amd64_9ef92050f0f5924a89dbdd8a62ea447828b1163f2d99b37f1f4b5435092959af.deb +Filename: pool/kubectl_1.20.5-00_amd64_9d55573b5d4b0d5b84e229fb67160820eab6e120dad956ddbf98763a6f834a14.deb Priority: optional -SHA256: 9ef92050f0f5924a89dbdd8a62ea447828b1163f2d99b37f1f4b5435092959af +SHA256: 9d55573b5d4b0d5b84e229fb67160820eab6e120dad956ddbf98763a6f834a14 Section: misc -Size: 9038344 +Size: 7944960 Package: kubectl -Version: 1.22.3-00 -Installed-Size: 45813 +Version: 1.20.6-00 +Installed-Size: 39281 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.22.3-00_amd64_41b047d8823ded626c16f65fb9af0c8b0ef983815aeb2bbd9ae38c19d2471393.deb +Filename: pool/kubectl_1.20.6-00_amd64_cd47d4df6bf7805a6d33280975c19e009a2a1b6db8f223b4a16a5c34a1409f01.deb Priority: optional -SHA256: 41b047d8823ded626c16f65fb9af0c8b0ef983815aeb2bbd9ae38c19d2471393 +SHA256: cd47d4df6bf7805a6d33280975c19e009a2a1b6db8f223b4a16a5c34a1409f01 Section: misc -Size: 9038976 +Size: 7941520 Package: kubectl -Version: 1.22.4-00 -Installed-Size: 45837 +Version: 1.20.7-00 +Installed-Size: 39289 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.22.4-00_amd64_637b120b480b3ede53b93a140bc9d40df648e0ae1415da4a4d2584e1989fee92.deb +Filename: pool/kubectl_1.20.7-00_amd64_660b5719f29bfb1591382625055acedbd418558073e3fc31b1092c0885522951.deb Priority: optional -SHA256: 637b120b480b3ede53b93a140bc9d40df648e0ae1415da4a4d2584e1989fee92 +SHA256: 660b5719f29bfb1591382625055acedbd418558073e3fc31b1092c0885522951 Section: misc -Size: 9057136 +Size: 7939432 Package: kubectl -Version: 1.22.5-00 -Installed-Size: 45841 -Maintainer: Kubernetes Authors +Version: 1.20.8-00 +Installed-Size: 39289 +Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.22.5-00_amd64_1c895d4c5f661cb91fe1af1d15821e8ea53d1d3563eff5cc2fea44034fc2307b.deb +Filename: pool/kubectl_1.20.8-00_amd64_28419496c93e687e4465f269adece02d185d5d14bc03877cff6aef140f7d0ca2.deb Priority: optional -SHA256: 1c895d4c5f661cb91fe1af1d15821e8ea53d1d3563eff5cc2fea44034fc2307b +SHA256: 28419496c93e687e4465f269adece02d185d5d14bc03877cff6aef140f7d0ca2 Section: misc -Size: 9051868 +Size: 7940080 Package: kubectl -Version: 1.22.6-00 -Installed-Size: 45841 +Version: 1.20.9-00 +Installed-Size: 39293 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.22.6-00_amd64_ceddca44a1bdcac01cb0194141016de29a4a4792c4cd1d0a51ee9a98272bd8b5.deb +Filename: pool/kubectl_1.20.9-00_amd64_a287ee72dadb97bf9bfb4a4f99f0b2debbc7f1266d17501e0b34c1afbf50f3ce.deb Priority: optional -SHA256: ceddca44a1bdcac01cb0194141016de29a4a4792c4cd1d0a51ee9a98272bd8b5 +SHA256: a287ee72dadb97bf9bfb4a4f99f0b2debbc7f1266d17501e0b34c1afbf50f3ce Section: misc -Size: 9052844 +Size: 7938840 Package: kubectl -Version: 1.22.7-00 -Installed-Size: 45841 +Version: 1.20.10-00 +Installed-Size: 39289 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.22.7-00_amd64_e71b130cbba373697237c93c31f952b576aa39dd56d36a71ffe6554b6f946656.deb +Filename: pool/kubectl_1.20.10-00_amd64_7cb5e3c93dfcd4917f92128ae17ccfadda435b20dda81f13d3b88ad2043f5e36.deb Priority: optional -SHA256: e71b130cbba373697237c93c31f952b576aa39dd56d36a71ffe6554b6f946656 +SHA256: 7cb5e3c93dfcd4917f92128ae17ccfadda435b20dda81f13d3b88ad2043f5e36 Section: misc -Size: 9054520 +Size: 7939896 Package: kubectl -Version: 1.23.0-00 -Installed-Size: 45493 +Version: 1.20.11-00 +Installed-Size: 39289 Maintainer: Kubernetes Authors Architecture: amd64 Description: Kubernetes Command Line Tool The Kubernetes command line tool for interacting with the Kubernetes API. Homepage: https://kubernetes.io -Filename: pool/kubectl_1.23.0-00_amd64_68f34d5286d84e1fefc00e38da7950a73610060f47b6fc14bced68fdea52518a.deb +Filename: pool/kubectl_1.20.11-00_amd64_35c14b5f2b04eceb24061f87f0e8644b07b25146015228ff3f7a654c90f753ba.deb Priority: optional -SHA256: 68f34d5286d84e1fefc00e38da7950a73610060f47b6fc14bced68fdea52518a +SHA256: 35c14b5f2b04eceb24061f87f0e8644b07b25146015228ff3f7a654c90f753ba Section: misc -Size: 8931644 +Size: 7940624 Package: kubectl -Version: 1.23.1-00 -Installed-Size: 45501 +Version: 1.20.12-00 +Installed-Size: 39289 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.20.12-00_amd64_caa48286cd8ce932a25df202ec8c9d6d75ebf33e88e86bf4c41321238d08b20c.deb +Priority: optional +SHA256: caa48286cd8ce932a25df202ec8c9d6d75ebf33e88e86bf4c41321238d08b20c +Section: misc +Size: 7939512 + +Package: kubectl +Version: 1.20.13-00 +Installed-Size: 39305 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.20.13-00_amd64_c57df2e8f9a2e0c90381c13ef33bb25f14c0cb186ee8bce4acdfd36fa989ad39.deb +Priority: optional +SHA256: c57df2e8f9a2e0c90381c13ef33bb25f14c0cb186ee8bce4acdfd36fa989ad39 +Section: misc +Size: 7940832 + +Package: kubectl +Version: 1.20.14-00 +Installed-Size: 39305 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.20.14-00_amd64_9ac0231d9b6c3f22d2a5be92837256b3ce17b8829dc4c430402f524e603ad643.deb +Priority: optional +SHA256: 9ac0231d9b6c3f22d2a5be92837256b3ce17b8829dc4c430402f524e603ad643 +Section: misc +Size: 7943688 + +Package: kubectl +Version: 1.20.15-00 +Installed-Size: 39305 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.20.15-00_amd64_80a863a434987db56c30901d54627efe4f9fbe712cc6befc61c716c1ead4680d.deb +Priority: optional +SHA256: 80a863a434987db56c30901d54627efe4f9fbe712cc6befc61c716c1ead4680d +Section: misc +Size: 7941276 + +Package: kubectl +Version: 1.21.0-00 +Installed-Size: 45353 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.0-00_amd64_7f0440537bc24f3c0911719c16b26d521ce54b0d5adfbe08fb51fa323dec0e42.deb +Priority: optional +SHA256: 7f0440537bc24f3c0911719c16b26d521ce54b0d5adfbe08fb51fa323dec0e42 +Section: misc +Size: 8972164 + +Package: kubectl +Version: 1.21.1-00 +Installed-Size: 46473 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.1-00_amd64_455c822f0bbcd5038be4eb85009b786826204755cb2e27222d7612e9159b8145.deb +Priority: optional +SHA256: 455c822f0bbcd5038be4eb85009b786826204755cb2e27222d7612e9159b8145 +Section: misc +Size: 9224748 + +Package: kubectl +Version: 1.21.2-00 +Installed-Size: 45337 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.2-00_amd64_0626ce06c9df71499e63bcdca1b28f2d51ce4e6d2b608b179725242205a8a0a9.deb +Priority: optional +SHA256: 0626ce06c9df71499e63bcdca1b28f2d51ce4e6d2b608b179725242205a8a0a9 +Section: misc +Size: 8966136 + +Package: kubectl +Version: 1.21.3-00 +Installed-Size: 45341 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.3-00_amd64_6a0a5a71bc0b8779493f41726afd1df7c791693b447fed76a0e1eb118c75e9a8.deb +Priority: optional +SHA256: 6a0a5a71bc0b8779493f41726afd1df7c791693b447fed76a0e1eb118c75e9a8 +Section: misc +Size: 8967196 + +Package: kubectl +Version: 1.21.4-00 +Installed-Size: 45341 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.4-00_amd64_c9a4e0582a5efee3d337c135e16587d056dcbbfff11e3219e566ac4f23b45899.deb +Priority: optional +SHA256: c9a4e0582a5efee3d337c135e16587d056dcbbfff11e3219e566ac4f23b45899 +Section: misc +Size: 8966400 + +Package: kubectl +Version: 1.21.5-00 +Installed-Size: 45557 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.5-00_amd64_c18de3e62688437e8eaa01441b57e361540b39c2339ab1b30e5584124d66e1e2.deb +Priority: optional +SHA256: c18de3e62688437e8eaa01441b57e361540b39c2339ab1b30e5584124d66e1e2 +Section: misc +Size: 8994476 + +Package: kubectl +Version: 1.21.6-00 +Installed-Size: 45557 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.6-00_amd64_e059e2ec584193a485ba72aba3077120069d58aa026a252293ff3da481514dea.deb +Priority: optional +SHA256: e059e2ec584193a485ba72aba3077120069d58aa026a252293ff3da481514dea +Section: misc +Size: 8997996 + +Package: kubectl +Version: 1.21.7-00 +Installed-Size: 45581 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.7-00_amd64_674e7f461b7afeeeeface7fafa1a7eb8b7b79ce7948828d7768b4f88d786562c.deb +Priority: optional +SHA256: 674e7f461b7afeeeeface7fafa1a7eb8b7b79ce7948828d7768b4f88d786562c +Section: misc +Size: 9021644 + +Package: kubectl +Version: 1.21.8-00 +Installed-Size: 45593 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.8-00_amd64_7b8a020a04629467822dfd64ff24e04b3ad4f67edf0c0f92ad8af0449251ff76.deb +Priority: optional +SHA256: 7b8a020a04629467822dfd64ff24e04b3ad4f67edf0c0f92ad8af0449251ff76 +Section: misc +Size: 9008248 + +Package: kubectl +Version: 1.21.9-00 +Installed-Size: 45593 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.9-00_amd64_76d3d14d9e5813a924287b649c257ee8aeda62226a3874525480b3f1e2829c7f.deb +Priority: optional +SHA256: 76d3d14d9e5813a924287b649c257ee8aeda62226a3874525480b3f1e2829c7f +Section: misc +Size: 9013168 + +Package: kubectl +Version: 1.21.10-00 +Installed-Size: 45593 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.10-00_amd64_7280c0c4ae9ad633c2f16590f07620e95c99d478ece421a97675fe77ea79e53d.deb +Priority: optional +SHA256: 7280c0c4ae9ad633c2f16590f07620e95c99d478ece421a97675fe77ea79e53d +Section: misc +Size: 9014640 + +Package: kubectl +Version: 1.21.11-00 +Installed-Size: 45597 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.11-00_amd64_50c8f5166696a1e5300471a60dbc443299839f40224f1f03331cb856e5065712.deb +Priority: optional +SHA256: 50c8f5166696a1e5300471a60dbc443299839f40224f1f03331cb856e5065712 +Section: misc +Size: 9013316 + +Package: kubectl +Version: 1.21.12-00 +Installed-Size: 45597 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.12-00_amd64_627571db188ffd08646603dbfc0f5c96ceafa679bd120397c47e681722b070c3.deb +Priority: optional +SHA256: 627571db188ffd08646603dbfc0f5c96ceafa679bd120397c47e681722b070c3 +Section: misc +Size: 9016344 + +Package: kubectl +Version: 1.21.13-00 +Installed-Size: 45597 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.13-00_amd64_5982b370d4e6b6e297bf3faacd5ffd8f7c1992e46a28934de7b859f4619b981e.deb +Priority: optional +SHA256: 5982b370d4e6b6e297bf3faacd5ffd8f7c1992e46a28934de7b859f4619b981e +Section: misc +Size: 9015120 + +Package: kubectl +Version: 1.21.14-00 +Installed-Size: 45597 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.21.14-00_amd64_ba8cd345ad0e5b78ac36efdb4028708d6e02f24896b2a9bf7605afb524e171f6.deb +Priority: optional +SHA256: ba8cd345ad0e5b78ac36efdb4028708d6e02f24896b2a9bf7605afb524e171f6 +Section: misc +Size: 9014852 + +Package: kubectl +Version: 1.22.0-00 +Installed-Size: 45813 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.0-00_amd64_052395d9ddf0364665cf7533aa66f96b310ec8a2b796d21c42f386684ad1fc56.deb +Priority: optional +SHA256: 052395d9ddf0364665cf7533aa66f96b310ec8a2b796d21c42f386684ad1fc56 +Section: misc +Size: 9036708 + +Package: kubectl +Version: 1.22.1-00 +Installed-Size: 45813 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.1-00_amd64_2a00cd912bfa610fe4932bc0a557b2dd7b95b2c8bff9d001dc6b3d34323edf7d.deb +Priority: optional +SHA256: 2a00cd912bfa610fe4932bc0a557b2dd7b95b2c8bff9d001dc6b3d34323edf7d +Section: misc +Size: 9036044 + +Package: kubectl +Version: 1.22.2-00 +Installed-Size: 45813 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.2-00_amd64_9ef92050f0f5924a89dbdd8a62ea447828b1163f2d99b37f1f4b5435092959af.deb +Priority: optional +SHA256: 9ef92050f0f5924a89dbdd8a62ea447828b1163f2d99b37f1f4b5435092959af +Section: misc +Size: 9038344 + +Package: kubectl +Version: 1.22.3-00 +Installed-Size: 45813 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.3-00_amd64_41b047d8823ded626c16f65fb9af0c8b0ef983815aeb2bbd9ae38c19d2471393.deb +Priority: optional +SHA256: 41b047d8823ded626c16f65fb9af0c8b0ef983815aeb2bbd9ae38c19d2471393 +Section: misc +Size: 9038976 + +Package: kubectl +Version: 1.22.4-00 +Installed-Size: 45837 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.4-00_amd64_637b120b480b3ede53b93a140bc9d40df648e0ae1415da4a4d2584e1989fee92.deb +Priority: optional +SHA256: 637b120b480b3ede53b93a140bc9d40df648e0ae1415da4a4d2584e1989fee92 +Section: misc +Size: 9057136 + +Package: kubectl +Version: 1.22.5-00 +Installed-Size: 45841 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.5-00_amd64_1c895d4c5f661cb91fe1af1d15821e8ea53d1d3563eff5cc2fea44034fc2307b.deb +Priority: optional +SHA256: 1c895d4c5f661cb91fe1af1d15821e8ea53d1d3563eff5cc2fea44034fc2307b +Section: misc +Size: 9051868 + +Package: kubectl +Version: 1.22.6-00 +Installed-Size: 45841 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.6-00_amd64_ceddca44a1bdcac01cb0194141016de29a4a4792c4cd1d0a51ee9a98272bd8b5.deb +Priority: optional +SHA256: ceddca44a1bdcac01cb0194141016de29a4a4792c4cd1d0a51ee9a98272bd8b5 +Section: misc +Size: 9052844 + +Package: kubectl +Version: 1.22.7-00 +Installed-Size: 45841 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.7-00_amd64_e71b130cbba373697237c93c31f952b576aa39dd56d36a71ffe6554b6f946656.deb +Priority: optional +SHA256: e71b130cbba373697237c93c31f952b576aa39dd56d36a71ffe6554b6f946656 +Section: misc +Size: 9054520 + +Package: kubectl +Version: 1.22.8-00 +Installed-Size: 45845 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.8-00_amd64_7fdf8e90bd7d2fa81b85a26f0ecb9d2a571b31b460ce72703f350407d7ca4ff1.deb +Priority: optional +SHA256: 7fdf8e90bd7d2fa81b85a26f0ecb9d2a571b31b460ce72703f350407d7ca4ff1 +Section: misc +Size: 9054776 + +Package: kubectl +Version: 1.22.9-00 +Installed-Size: 45845 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.9-00_amd64_5b9010f2bbc044880e82fc2c4e5b20441a50391c28d162be8e0e6a8299974b03.deb +Priority: optional +SHA256: 5b9010f2bbc044880e82fc2c4e5b20441a50391c28d162be8e0e6a8299974b03 +Section: misc +Size: 9049188 + +Package: kubectl +Version: 1.22.10-00 +Installed-Size: 45845 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.10-00_amd64_bbe70b16e658b9d401ee98c7cca983a9b7e3a77eba609b740ede6ff522694695.deb +Priority: optional +SHA256: bbe70b16e658b9d401ee98c7cca983a9b7e3a77eba609b740ede6ff522694695 +Section: misc +Size: 9053356 + +Package: kubectl +Version: 1.22.11-00 +Installed-Size: 45845 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.11-00_amd64_950015a4f0e56535151702153cb8bffbea1bb3c30e80f85009b0b3fe60deebb7.deb +Priority: optional +SHA256: 950015a4f0e56535151702153cb8bffbea1bb3c30e80f85009b0b3fe60deebb7 +Section: misc +Size: 9056672 + +Package: kubectl +Version: 1.22.12-00 +Installed-Size: 45845 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.12-00_amd64_85dd3c9ac10d22a014f273401f12be4ee522005e4a2ae4155d605e02e8fd7d2b.deb +Priority: optional +SHA256: 85dd3c9ac10d22a014f273401f12be4ee522005e4a2ae4155d605e02e8fd7d2b +Section: misc +Size: 9055652 + +Package: kubectl +Version: 1.22.13-00 +Installed-Size: 45845 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.13-00_amd64_bd576d74077440635ad688bcc8fc48139fa9d40150f9fbff7bb0157ded852eec.deb +Priority: optional +SHA256: bd576d74077440635ad688bcc8fc48139fa9d40150f9fbff7bb0157ded852eec +Section: misc +Size: 9054572 + +Package: kubectl +Version: 1.22.14-00 +Installed-Size: 45849 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.14-00_amd64_c6a5d7a3e9840225eab03ef415a8ec370a40adbac2869e34c10ffef5b4f7a496.deb +Priority: optional +SHA256: c6a5d7a3e9840225eab03ef415a8ec370a40adbac2869e34c10ffef5b4f7a496 +Section: misc +Size: 9056292 + +Package: kubectl +Version: 1.22.15-00 +Installed-Size: 45849 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.15-00_amd64_a0106ec7b4f0fd87f8a030c6193b2900d0a3a68e81aebd564d26b88666e46c34.deb +Priority: optional +SHA256: a0106ec7b4f0fd87f8a030c6193b2900d0a3a68e81aebd564d26b88666e46c34 +Section: misc +Size: 9053836 + +Package: kubectl +Version: 1.22.16-00 +Installed-Size: 45849 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.22.16-00_amd64_e36c8024a0fda9575658066e278ec472b058b1350d6b6ad57eefc402836566d5.deb +Priority: optional +SHA256: e36c8024a0fda9575658066e278ec472b058b1350d6b6ad57eefc402836566d5 +Section: misc +Size: 9055308 + +Package: kubectl +Version: 1.23.0-00 +Installed-Size: 45493 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.0-00_amd64_68f34d5286d84e1fefc00e38da7950a73610060f47b6fc14bced68fdea52518a.deb +Priority: optional +SHA256: 68f34d5286d84e1fefc00e38da7950a73610060f47b6fc14bced68fdea52518a +Section: misc +Size: 8931644 + +Package: kubectl +Version: 1.23.1-00 +Installed-Size: 45501 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.1-00_amd64_369729660de023320c13ce87a05218dee845e08741bd549f2ef434a40a2d50d8.deb +Priority: optional +SHA256: 369729660de023320c13ce87a05218dee845e08741bd549f2ef434a40a2d50d8 +Section: misc +Size: 8927860 + +Package: kubectl +Version: 1.23.2-00 +Installed-Size: 45501 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.2-00_amd64_87b80a0d538ae7cff1ec076a7e59abf9798a222c17e037b9ff517c2f2f8b3e4a.deb +Priority: optional +SHA256: 87b80a0d538ae7cff1ec076a7e59abf9798a222c17e037b9ff517c2f2f8b3e4a +Section: misc +Size: 8929288 + +Package: kubectl +Version: 1.23.3-00 +Installed-Size: 45501 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.3-00_amd64_ce54d4594186bf38e7e4702a0ee74479988f310fdd82d3cebf18a5cc8a8fa249.deb +Priority: optional +SHA256: ce54d4594186bf38e7e4702a0ee74479988f310fdd82d3cebf18a5cc8a8fa249 +Section: misc +Size: 8929112 + +Package: kubectl +Version: 1.23.4-00 +Installed-Size: 45505 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.4-00_amd64_8665604e01fca125404270822c0a15e1964e397bbe411277f49a6eb13a9d6fef.deb +Priority: optional +SHA256: 8665604e01fca125404270822c0a15e1964e397bbe411277f49a6eb13a9d6fef +Section: misc +Size: 8926808 + +Package: kubectl +Version: 1.23.5-00 +Installed-Size: 45509 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.5-00_amd64_d5f985a62ca1798ff59029294cf4bbf7e6e8d4ffe66559a1c9b0559a37c580f7.deb +Priority: optional +SHA256: d5f985a62ca1798ff59029294cf4bbf7e6e8d4ffe66559a1c9b0559a37c580f7 +Section: misc +Size: 8930820 + +Package: kubectl +Version: 1.23.6-00 +Installed-Size: 45509 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.6-00_amd64_69db18624912cf4b199e7e54b2e2dd24b01e7d2b4b61c5098843eefa79e252e0.deb +Priority: optional +SHA256: 69db18624912cf4b199e7e54b2e2dd24b01e7d2b4b61c5098843eefa79e252e0 +Section: misc +Size: 8932956 + +Package: kubectl +Version: 1.23.7-00 +Installed-Size: 45509 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.7-00_amd64_2f9eb4ad973c0be85f5db53cd59f4dcb0465ccad2cee4ae9c9ea2e7b8806fb69.deb +Priority: optional +SHA256: 2f9eb4ad973c0be85f5db53cd59f4dcb0465ccad2cee4ae9c9ea2e7b8806fb69 +Section: misc +Size: 8932188 + +Package: kubectl +Version: 1.23.8-00 +Installed-Size: 45509 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.8-00_amd64_2fe08ea8531ffac222a96b3a609f180f4330a9e80e8f2f6b2d563b8ee9a63102.deb +Priority: optional +SHA256: 2fe08ea8531ffac222a96b3a609f180f4330a9e80e8f2f6b2d563b8ee9a63102 +Section: misc +Size: 8934396 + +Package: kubectl +Version: 1.23.9-00 +Installed-Size: 45509 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.9-00_amd64_9c7ca17fb1079d52e845e6891a79a17d8fdf506870eb67dfa7539536507ebb87.deb +Priority: optional +SHA256: 9c7ca17fb1079d52e845e6891a79a17d8fdf506870eb67dfa7539536507ebb87 +Section: misc +Size: 8936352 + +Package: kubectl +Version: 1.23.10-00 +Installed-Size: 45513 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.10-00_amd64_b5603af8c5ceba9a8571df5bd0827a62c90cc154fbd8cdbef5b12e9b378490a4.deb +Priority: optional +SHA256: b5603af8c5ceba9a8571df5bd0827a62c90cc154fbd8cdbef5b12e9b378490a4 +Section: misc +Size: 8930492 + +Package: kubectl +Version: 1.23.11-00 +Installed-Size: 45521 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.11-00_amd64_8b61a0f190d275e1653ebe3b80d77a1cb62ab1990ea37975860405cf875e8453.deb +Priority: optional +SHA256: 8b61a0f190d275e1653ebe3b80d77a1cb62ab1990ea37975860405cf875e8453 +Section: misc +Size: 8937968 + +Package: kubectl +Version: 1.23.12-00 +Installed-Size: 45521 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.12-00_amd64_bc503daf64f63901162a0f6e6470cff98b0c7d5927c18d111f8e309f904c601d.deb +Priority: optional +SHA256: bc503daf64f63901162a0f6e6470cff98b0c7d5927c18d111f8e309f904c601d +Section: misc +Size: 8938236 + +Package: kubectl +Version: 1.23.13-00 +Installed-Size: 45521 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.13-00_amd64_b784887f03e5bd3852433b302b4a0f9ead5367ec76a04a732145751df60beafa.deb +Priority: optional +SHA256: b784887f03e5bd3852433b302b4a0f9ead5367ec76a04a732145751df60beafa +Section: misc +Size: 8934944 + +Package: kubectl +Version: 1.23.14-00 +Installed-Size: 45525 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.23.14-00_amd64_cafb9abf1c611a933f8729f6e62966e79cf763a3f838cd84b75ba61eb0c0499f.deb +Priority: optional +SHA256: cafb9abf1c611a933f8729f6e62966e79cf763a3f838cd84b75ba61eb0c0499f +Section: misc +Size: 8938128 + +Package: kubectl +Version: 1.24.0-00 +Installed-Size: 44641 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.0-00_amd64_72f30f649bc595f2eceed41b3f304798373b332a32357f77a49522fdfbb1c8ab.deb +Priority: optional +SHA256: 72f30f649bc595f2eceed41b3f304798373b332a32357f77a49522fdfbb1c8ab +Section: misc +Size: 9315540 + +Package: kubectl +Version: 1.24.1-00 +Installed-Size: 44645 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.1-00_amd64_318700df48dd5dd107daca0a0c84c82d43cec827a676a597be34402635e34dfd.deb +Priority: optional +SHA256: 318700df48dd5dd107daca0a0c84c82d43cec827a676a597be34402635e34dfd +Section: misc +Size: 9317720 + +Package: kubectl +Version: 1.24.2-00 +Installed-Size: 44645 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.2-00_amd64_64a68ed5029a5b9aa3122ab6eef17c656b4aa51e9838c9d9b7ef6a86319996bf.deb +Priority: optional +SHA256: 64a68ed5029a5b9aa3122ab6eef17c656b4aa51e9838c9d9b7ef6a86319996bf +Section: misc +Size: 9315996 + +Package: kubectl +Version: 1.24.3-00 +Installed-Size: 44645 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.3-00_amd64_6f7bbea92489662220ce641e7b41dda803dc78d3be658186e3d169d4d593bc55.deb +Priority: optional +SHA256: 6f7bbea92489662220ce641e7b41dda803dc78d3be658186e3d169d4d593bc55 +Section: misc +Size: 9315924 + +Package: kubectl +Version: 1.24.4-00 +Installed-Size: 44649 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.4-00_amd64_236d770fe432a325eacea145bfa688d17271e56f39f9bda953b4afb967f16823.deb +Priority: optional +SHA256: 236d770fe432a325eacea145bfa688d17271e56f39f9bda953b4afb967f16823 +Section: misc +Size: 9317240 + +Package: kubectl +Version: 1.24.5-00 +Installed-Size: 44657 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.5-00_amd64_e6a6a486ab05f2e066eff3f70e6ca104e9a2ce5bd3adc99938a80c94d64a6233.deb +Priority: optional +SHA256: e6a6a486ab05f2e066eff3f70e6ca104e9a2ce5bd3adc99938a80c94d64a6233 +Section: misc +Size: 9317892 + +Package: kubectl +Version: 1.24.6-00 +Installed-Size: 44657 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.6-00_amd64_723f516347d80f6e161d0dd8272f629733d9db4cfdfdf93dcdad1dff44eaf9dd.deb +Priority: optional +SHA256: 723f516347d80f6e161d0dd8272f629733d9db4cfdfdf93dcdad1dff44eaf9dd +Section: misc +Size: 9321360 + +Package: kubectl +Version: 1.24.7-00 +Installed-Size: 44669 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.7-00_amd64_acb6c9de8ce20fd37709a67b25440a0e7eed1bee2bac4b9d2dc2785b4525aa13.deb +Priority: optional +SHA256: acb6c9de8ce20fd37709a67b25440a0e7eed1bee2bac4b9d2dc2785b4525aa13 +Section: misc +Size: 9326400 + +Package: kubectl +Version: 1.24.8-00 +Installed-Size: 44669 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.24.8-00_amd64_3a8893e75a42de40768ce5373803cec124fbe13cf19e222e3fb21b0c5f450c9e.deb +Priority: optional +SHA256: 3a8893e75a42de40768ce5373803cec124fbe13cf19e222e3fb21b0c5f450c9e +Section: misc +Size: 9332516 + +Package: kubectl +Version: 1.25.0-00 +Installed-Size: 43953 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.25.0-00_amd64_f8dde71b1d07a5403b205326d01cec55aaf4f899f6a17cb7417c244f5b40dd1f.deb +Priority: optional +SHA256: f8dde71b1d07a5403b205326d01cec55aaf4f899f6a17cb7417c244f5b40dd1f +Section: misc +Size: 9499512 + +Package: kubectl +Version: 1.25.1-00 +Installed-Size: 43965 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.25.1-00_amd64_bf4d8c45625d198a6cb870f2a6836aa47f1904903c06d22bc88af3387455b6ee.deb +Priority: optional +SHA256: bf4d8c45625d198a6cb870f2a6836aa47f1904903c06d22bc88af3387455b6ee +Section: misc +Size: 9502908 + +Package: kubectl +Version: 1.25.2-00 +Installed-Size: 43965 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.25.2-00_amd64_f69e71defe39c333d60d5c01bdd26e44e8ac60df7ba4b3a31056bd9618d673bb.deb +Priority: optional +SHA256: f69e71defe39c333d60d5c01bdd26e44e8ac60df7ba4b3a31056bd9618d673bb +Section: misc +Size: 9502888 + +Package: kubectl +Version: 1.25.3-00 +Installed-Size: 43965 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.25.3-00_amd64_b3d13be17d876102338de929222ef0660eb13bf0b802266351241c8ed72789af.deb +Priority: optional +SHA256: b3d13be17d876102338de929222ef0660eb13bf0b802266351241c8ed72789af +Section: misc +Size: 9502992 + +Package: kubectl +Version: 1.25.4-00 +Installed-Size: 43965 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes Command Line Tool + The Kubernetes command line tool for interacting with the Kubernetes API. +Homepage: https://kubernetes.io +Filename: pool/kubectl_1.25.4-00_amd64_4b9b491fd2f0c82795c6c69c290cb912264a7bfd0465ebe57cd4b46f7c2cf271.deb +Priority: optional +SHA256: 4b9b491fd2f0c82795c6c69c290cb912264a7bfd0465ebe57cd4b46f7c2cf271 +Section: misc +Size: 9497512 + +Package: kubelet +Version: 1.5.1-00 +Installed-Size: 105097 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.1-00_amd64_bb82dd4bcf0c9bc813c599f62afa48832bf34302d723c5a38347c2754f3735e2.deb +Priority: optional +SHA256: bb82dd4bcf0c9bc813c599f62afa48832bf34302d723c5a38347c2754f3735e2 +Section: misc +Size: 15118582 + +Package: kubelet +Version: 1.5.1-01 +Installed-Size: 105097 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), kubernetes-cni (<< 0.4), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.1-01_amd64_e61a09a7906a5c4e3293d73dd6890fc20a80338e2850445bd147c9dba97a815f.deb +Priority: optional +SHA256: e61a09a7906a5c4e3293d73dd6890fc20a80338e2850445bd147c9dba97a815f +Section: misc +Size: 15099774 + +Package: kubelet +Version: 1.5.2-00 +Installed-Size: 105597 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.2-00_amd64_ac51b2e458539f4803b2d2b31b3fad0b6d503ca8ddc1994e55b4150f33909163.deb +Priority: optional +SHA256: ac51b2e458539f4803b2d2b31b3fad0b6d503ca8ddc1994e55b4150f33909163 +Section: misc +Size: 15218628 + +Package: kubelet +Version: 1.5.2-01 +Installed-Size: 105597 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), kubernetes-cni (<< 0.4), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.2-01_amd64_d39273bf2d91b194035d9c924c865393a9271c35a6db5b106c9cf78699ed7573.deb +Priority: optional +SHA256: d39273bf2d91b194035d9c924c865393a9271c35a6db5b106c9cf78699ed7573 +Section: misc +Size: 15222026 + +Package: kubelet +Version: 1.5.3-00 +Installed-Size: 105610 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.3-00_amd64_6df7dd70c4db4afb77bdf309569d5e9ad92e7319ab4d3b9bcd0bd56f457a8755.deb +Priority: optional +SHA256: 6df7dd70c4db4afb77bdf309569d5e9ad92e7319ab4d3b9bcd0bd56f457a8755 +Section: misc +Size: 15221714 + +Package: kubelet +Version: 1.5.3-01 +Installed-Size: 105610 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), kubernetes-cni (<< 0.4), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.3-01_amd64_6e218165b6d7a024866fa430bce5940a2247ca469056c00b6ff7310e36d044c4.deb +Priority: optional +SHA256: 6e218165b6d7a024866fa430bce5940a2247ca469056c00b6ff7310e36d044c4 +Section: misc +Size: 15215748 + +Package: kubelet +Version: 1.5.6-00 +Installed-Size: 110307 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.6-00_amd64_a9a67135a020676e3879cca1971447f78bd4b365a243b94a42123cac54d03d9b.deb +Priority: optional +SHA256: a9a67135a020676e3879cca1971447f78bd4b365a243b94a42123cac54d03d9b +Section: misc +Size: 15745228 + +Package: kubelet +Version: 1.5.6-01 +Installed-Size: 110307 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.6-01_amd64_1d17f35764899052ae936a509327a60eb753f06befdaef9345f0f2cca966decb.deb +Priority: optional +SHA256: 1d17f35764899052ae936a509327a60eb753f06befdaef9345f0f2cca966decb +Section: misc +Size: 15739342 + +Package: kubelet +Version: 1.5.7-00 +Installed-Size: 111740 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.7-00_amd64_f872da8a98d992681d49218c24703762fc1a9699f9a6af46de24e9401d6fb0aa.deb +Priority: optional +SHA256: f872da8a98d992681d49218c24703762fc1a9699f9a6af46de24e9401d6fb0aa +Section: misc +Size: 15914132 + +Package: kubelet +Version: 1.5.7-01 +Installed-Size: 111740 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.5.7-01_amd64_b4fdcd12d31717c829362d7ee07c850ec91cb7981afdce68c362f87ea25a8405.deb +Priority: optional +SHA256: b4fdcd12d31717c829362d7ee07c850ec91cb7981afdce68c362f87ea25a8405 +Section: misc +Size: 15888326 + +Package: kubelet +Version: 1.6.0-00 +Installed-Size: 135429 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.0-00_amd64_850ba773992934d5eb46b064274d3449bb5c07e2f1a1019b10e068e0a0efc78d.deb +Priority: optional +SHA256: 850ba773992934d5eb46b064274d3449bb5c07e2f1a1019b10e068e0a0efc78d +Section: misc +Size: 18264964 + +Package: kubelet +Version: 1.6.0-01 +Installed-Size: 135429 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.0-01_amd64_9bb4f26a5ea2154b8b75cb2c4e8cfa69d25b276b1727f5004fa96a92596a59b6.deb +Priority: optional +SHA256: 9bb4f26a5ea2154b8b75cb2c4e8cfa69d25b276b1727f5004fa96a92596a59b6 +Section: misc +Size: 18262772 + +Package: kubelet +Version: 1.6.1-00 +Installed-Size: 135429 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.1-00_amd64_8f4433bbf40b5c2fdf75089f520544969cca62ee53b7ea87eb4f1123fa2f4163.deb +Priority: optional +SHA256: 8f4433bbf40b5c2fdf75089f520544969cca62ee53b7ea87eb4f1123fa2f4163 +Section: misc +Size: 18259644 + +Package: kubelet +Version: 1.6.1-01 +Installed-Size: 135429 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.1-01_amd64_d1d4c6c5b3686288e5b8fdad38eaf3ef9311f2e441bc9da5f2595f1d11cd36e1.deb +Priority: optional +SHA256: d1d4c6c5b3686288e5b8fdad38eaf3ef9311f2e441bc9da5f2595f1d11cd36e1 +Section: misc +Size: 18257744 + +Package: kubelet +Version: 1.6.2-00 +Installed-Size: 135437 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.2-00_amd64_8537952290ccb565bb9e6d7beaeeaa2b037eb5966df097d5ca95a7cb811c51d5.deb +Priority: optional +SHA256: 8537952290ccb565bb9e6d7beaeeaa2b037eb5966df097d5ca95a7cb811c51d5 +Section: misc +Size: 18258798 + +Package: kubelet +Version: 1.6.2-01 +Installed-Size: 135437 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.2-01_amd64_c75d1faa0625ba7da33942809a796af6edda0eda7ab21402b6a5435f86f4b2e9.deb +Priority: optional +SHA256: c75d1faa0625ba7da33942809a796af6edda0eda7ab21402b6a5435f86f4b2e9 +Section: misc +Size: 18266834 + +Package: kubelet +Version: 1.6.3-00 +Installed-Size: 135502 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.3-00_amd64_a94b0cfa5b26939d87097dfd45260474c1effcad879e35940eb6d36e7d953d6c.deb +Priority: optional +SHA256: a94b0cfa5b26939d87097dfd45260474c1effcad879e35940eb6d36e7d953d6c +Section: misc +Size: 18310234 + +Package: kubelet +Version: 1.6.3-01 +Installed-Size: 135502 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.3-01_amd64_2a99513cfb75e929ffbf11e20b9311f8a298f130716f26339ecce517d42b3297.deb +Priority: optional +SHA256: 2a99513cfb75e929ffbf11e20b9311f8a298f130716f26339ecce517d42b3297 +Section: misc +Size: 18288858 + +Package: kubelet +Version: 1.6.4-00 +Installed-Size: 135502 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.4-00_amd64_2affcdcf43b6cc5a89237d0ceb1b5a3a90c605d4da73b97c5842f1a53368231d.deb +Priority: optional +SHA256: 2affcdcf43b6cc5a89237d0ceb1b5a3a90c605d4da73b97c5842f1a53368231d +Section: misc +Size: 18304000 + +Package: kubelet +Version: 1.6.4-01 +Installed-Size: 135502 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.4-01_amd64_1315a3eca22fe54f50840a172bd5cc481876ab47cb53f216705bfd83b5ac3654.deb +Priority: optional +SHA256: 1315a3eca22fe54f50840a172bd5cc481876ab47cb53f216705bfd83b5ac3654 +Section: misc +Size: 18309978 + +Package: kubelet +Version: 1.6.5-00 +Installed-Size: 135621 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.5-00_amd64_2d1e2ea0fdd3f85594ed9d57b4bc19e3652f9bd66ad9099f0abfc268e6d9c379.deb +Priority: optional +SHA256: 2d1e2ea0fdd3f85594ed9d57b4bc19e3652f9bd66ad9099f0abfc268e6d9c379 +Section: misc +Size: 18328198 + +Package: kubelet +Version: 1.6.5-01 +Installed-Size: 135621 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.5-01_amd64_5c8209689a75443ac7cd918c9353ea14cd01f4e90a83ff6ac74a83ad7fc38d9f.deb +Priority: optional +SHA256: 5c8209689a75443ac7cd918c9353ea14cd01f4e90a83ff6ac74a83ad7fc38d9f +Section: misc +Size: 18307244 + +Package: kubelet +Version: 1.6.6-00 +Installed-Size: 135621 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.6-00_amd64_7e64ef3101aff3c7e59b7e38c3ff4acf7659730aeda47fd43bb7a12384069f11.deb +Priority: optional +SHA256: 7e64ef3101aff3c7e59b7e38c3ff4acf7659730aeda47fd43bb7a12384069f11 +Section: misc +Size: 18327616 + +Package: kubelet +Version: 1.6.6-01 +Installed-Size: 135621 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.6-01_amd64_a16dc33161ee16dcfaabb0658a97fc3f49372db66af2bfe00f2249cef375fb47.deb +Priority: optional +SHA256: a16dc33161ee16dcfaabb0658a97fc3f49372db66af2bfe00f2249cef375fb47 +Section: misc +Size: 18312592 + +Package: kubelet +Version: 1.6.7-00 +Installed-Size: 135626 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.7-00_amd64_b3c7f8b1743cbb05af4fa62f159952572a4520a3289a742a0544fcd8068703e8.deb +Priority: optional +SHA256: b3c7f8b1743cbb05af4fa62f159952572a4520a3289a742a0544fcd8068703e8 +Section: misc +Size: 18308982 + +Package: kubelet +Version: 1.6.7-01 +Installed-Size: 135626 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.7-01_amd64_307b05dfb47ccdcd50a6fdac9623e3f388f557b87424ca36d1fd6d41ee2b4ca1.deb +Priority: optional +SHA256: 307b05dfb47ccdcd50a6fdac9623e3f388f557b87424ca36d1fd6d41ee2b4ca1 +Section: misc +Size: 18303784 + +Package: kubelet +Version: 1.6.8-00 +Installed-Size: 135631 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.8-00_amd64_7bbb4de452b304799d6550d13e1065c439e798ccc9274d7e7ee2b30926b4dcd7.deb +Priority: optional +SHA256: 7bbb4de452b304799d6550d13e1065c439e798ccc9274d7e7ee2b30926b4dcd7 +Section: misc +Size: 18321568 + +Package: kubelet +Version: 1.6.8-01 +Installed-Size: 135631 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.8-01_amd64_8491be969b337db5213095b7e1d64e25ffb94cd834198936cd8f17692ae35405.deb +Priority: optional +SHA256: 8491be969b337db5213095b7e1d64e25ffb94cd834198936cd8f17692ae35405 +Section: misc +Size: 18308860 + +Package: kubelet +Version: 1.6.9-00 +Installed-Size: 135631 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.9-00_amd64_7ceae6daffdfbb50b2333063b8f06c5c8e704c82f4fcbf273f4d34a729ef82ef.deb +Priority: optional +SHA256: 7ceae6daffdfbb50b2333063b8f06c5c8e704c82f4fcbf273f4d34a729ef82ef +Section: misc +Size: 18335746 + +Package: kubelet +Version: 1.6.9-01 +Installed-Size: 135631 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.9-01_amd64_226d44d8f970337d3f07205583a00ddc05fed705a936d4a623186c20fe7e6604.deb +Priority: optional +SHA256: 226d44d8f970337d3f07205583a00ddc05fed705a936d4a623186c20fe7e6604 +Section: misc +Size: 18337776 + +Package: kubelet +Version: 1.6.10-00 +Installed-Size: 135636 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.10-00_amd64_b7ff1d3504ad670137f83f081de7d41768e9204c8f6ddd69c55e0032d8011e2a.deb +Priority: optional +SHA256: b7ff1d3504ad670137f83f081de7d41768e9204c8f6ddd69c55e0032d8011e2a +Section: misc +Size: 18320838 + +Package: kubelet +Version: 1.6.10-01 +Installed-Size: 135636 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.6.10-01_amd64_79b4282c2e51af49fd6fb72eed00d44ccfc99b87a7f52dea9bf3c70afdef6b05.deb +Priority: optional +SHA256: 79b4282c2e51af49fd6fb72eed00d44ccfc99b87a7f52dea9bf3c70afdef6b05 +Section: misc +Size: 18325048 + +Package: kubelet +Version: 1.6.11-00 +Installed-Size: 135636 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubectl_1.23.1-00_amd64_369729660de023320c13ce87a05218dee845e08741bd549f2ef434a40a2d50d8.deb +Filename: pool/kubelet_1.6.11-00_amd64_2dd18ba275fd1bf41acd6280975fd7a45467ca2f2842e61703c2787856f4e2a7.deb Priority: optional -SHA256: 369729660de023320c13ce87a05218dee845e08741bd549f2ef434a40a2d50d8 +SHA256: 2dd18ba275fd1bf41acd6280975fd7a45467ca2f2842e61703c2787856f4e2a7 Section: misc -Size: 8927860 +Size: 18310162 -Package: kubectl -Version: 1.23.2-00 -Installed-Size: 45501 +Package: kubelet +Version: 1.6.11-01 +Installed-Size: 135636 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubectl_1.23.2-00_amd64_87b80a0d538ae7cff1ec076a7e59abf9798a222c17e037b9ff517c2f2f8b3e4a.deb +Filename: pool/kubelet_1.6.11-01_amd64_b61d8439af0c31b8a0e10e18e2f4f161f1f651ab4ab7407077fca91d670981a9.deb Priority: optional -SHA256: 87b80a0d538ae7cff1ec076a7e59abf9798a222c17e037b9ff517c2f2f8b3e4a +SHA256: b61d8439af0c31b8a0e10e18e2f4f161f1f651ab4ab7407077fca91d670981a9 Section: misc -Size: 8929288 +Size: 18314280 -Package: kubectl -Version: 1.23.3-00 -Installed-Size: 45501 +Package: kubelet +Version: 1.6.12-00 +Installed-Size: 135636 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubectl_1.23.3-00_amd64_ce54d4594186bf38e7e4702a0ee74479988f310fdd82d3cebf18a5cc8a8fa249.deb +Filename: pool/kubelet_1.6.12-00_amd64_c302b5075f37fc8bdc251b2170b1b7b358c0faaf993ee1f0cf20204e971009ef.deb Priority: optional -SHA256: ce54d4594186bf38e7e4702a0ee74479988f310fdd82d3cebf18a5cc8a8fa249 +SHA256: c302b5075f37fc8bdc251b2170b1b7b358c0faaf993ee1f0cf20204e971009ef Section: misc -Size: 8929112 +Size: 18309998 -Package: kubectl -Version: 1.23.4-00 -Installed-Size: 45505 +Package: kubelet +Version: 1.6.12-01 +Installed-Size: 135636 Maintainer: Kubernetes Authors Architecture: amd64 -Description: Kubernetes Command Line Tool - The Kubernetes command line tool for interacting with the Kubernetes API. +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubectl_1.23.4-00_amd64_8665604e01fca125404270822c0a15e1964e397bbe411277f49a6eb13a9d6fef.deb +Filename: pool/kubelet_1.6.12-01_amd64_f61d249652954ea98d139332c81d1fb99db2b56d40265bc4aa88b7e8a1210740.deb Priority: optional -SHA256: 8665604e01fca125404270822c0a15e1964e397bbe411277f49a6eb13a9d6fef +SHA256: f61d249652954ea98d139332c81d1fb99db2b56d40265bc4aa88b7e8a1210740 Section: misc -Size: 8926808 +Size: 18303806 Package: kubelet -Version: 1.5.1-00 -Installed-Size: 105097 +Version: 1.6.13-00 +Installed-Size: 135644 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.1-00_amd64_bb82dd4bcf0c9bc813c599f62afa48832bf34302d723c5a38347c2754f3735e2.deb +Filename: pool/kubelet_1.6.13-00_amd64_7355ee8511bff4cb8103e18f2e6f86bfa691c54bd6556da7950c18c8de6b4ca9.deb Priority: optional -SHA256: bb82dd4bcf0c9bc813c599f62afa48832bf34302d723c5a38347c2754f3735e2 +SHA256: 7355ee8511bff4cb8103e18f2e6f86bfa691c54bd6556da7950c18c8de6b4ca9 Section: misc -Size: 15118582 +Size: 18332358 Package: kubelet -Version: 1.5.1-01 -Installed-Size: 105097 +Version: 1.6.13-01 +Installed-Size: 135644 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), kubernetes-cni (<< 0.4), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.1-01_amd64_e61a09a7906a5c4e3293d73dd6890fc20a80338e2850445bd147c9dba97a815f.deb +Filename: pool/kubelet_1.6.13-01_amd64_71548a4d6d62a90932f286f3235b758b9f42572dec6fe859e405af394794ec11.deb Priority: optional -SHA256: e61a09a7906a5c4e3293d73dd6890fc20a80338e2850445bd147c9dba97a815f +SHA256: 71548a4d6d62a90932f286f3235b758b9f42572dec6fe859e405af394794ec11 Section: misc -Size: 15099774 +Size: 18329924 Package: kubelet -Version: 1.5.2-00 -Installed-Size: 105597 +Version: 1.7.0-00 +Installed-Size: 141843 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.2-00_amd64_ac51b2e458539f4803b2d2b31b3fad0b6d503ca8ddc1994e55b4150f33909163.deb +Filename: pool/kubelet_1.7.0-00_amd64_b7c9be22a6379d8cc47ba1183bbc9de0acf49ad1418ffa8ae57628ad1d7c051f.deb Priority: optional -SHA256: ac51b2e458539f4803b2d2b31b3fad0b6d503ca8ddc1994e55b4150f33909163 +SHA256: b7c9be22a6379d8cc47ba1183bbc9de0acf49ad1418ffa8ae57628ad1d7c051f Section: misc -Size: 15218628 +Size: 19391892 Package: kubelet -Version: 1.5.2-01 -Installed-Size: 105597 +Version: 1.7.0-01 +Installed-Size: 141843 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), kubernetes-cni (<< 0.4), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.2-01_amd64_d39273bf2d91b194035d9c924c865393a9271c35a6db5b106c9cf78699ed7573.deb +Filename: pool/kubelet_1.7.0-01_amd64_12c44bfb8e7be653a22b2c2b9a988f7643bb0df9e00daa13cd54099a54453d6c.deb Priority: optional -SHA256: d39273bf2d91b194035d9c924c865393a9271c35a6db5b106c9cf78699ed7573 +SHA256: 12c44bfb8e7be653a22b2c2b9a988f7643bb0df9e00daa13cd54099a54453d6c Section: misc -Size: 15222026 +Size: 19393554 Package: kubelet -Version: 1.5.3-00 -Installed-Size: 105610 +Version: 1.7.1-00 +Installed-Size: 141843 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.3-00_amd64_6df7dd70c4db4afb77bdf309569d5e9ad92e7319ab4d3b9bcd0bd56f457a8755.deb +Filename: pool/kubelet_1.7.1-00_amd64_8e6aeef38ca042b85765751652f8115960892ca4cbd1a906b63197931351cb8d.deb Priority: optional -SHA256: 6df7dd70c4db4afb77bdf309569d5e9ad92e7319ab4d3b9bcd0bd56f457a8755 +SHA256: 8e6aeef38ca042b85765751652f8115960892ca4cbd1a906b63197931351cb8d Section: misc -Size: 15221714 +Size: 19400942 Package: kubelet -Version: 1.5.3-01 -Installed-Size: 105610 +Version: 1.7.1-01 +Installed-Size: 141843 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.3.0.1), kubernetes-cni (<< 0.4), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.3-01_amd64_6e218165b6d7a024866fa430bce5940a2247ca469056c00b6ff7310e36d044c4.deb +Filename: pool/kubelet_1.7.1-01_amd64_100fffc507151ead00e2c44cb2a116be934080fe6deac29e72cf0bf3712f6bc8.deb Priority: optional -SHA256: 6e218165b6d7a024866fa430bce5940a2247ca469056c00b6ff7310e36d044c4 +SHA256: 100fffc507151ead00e2c44cb2a116be934080fe6deac29e72cf0bf3712f6bc8 Section: misc -Size: 15215748 +Size: 19401102 Package: kubelet -Version: 1.5.6-00 -Installed-Size: 110307 +Version: 1.7.2-00 +Installed-Size: 142734 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.6-00_amd64_a9a67135a020676e3879cca1971447f78bd4b365a243b94a42123cac54d03d9b.deb +Filename: pool/kubelet_1.7.2-00_amd64_d685940c01bd21e18caa8528cf793b09f9d81f9c431173356461a8ecc0704f28.deb Priority: optional -SHA256: a9a67135a020676e3879cca1971447f78bd4b365a243b94a42123cac54d03d9b +SHA256: d685940c01bd21e18caa8528cf793b09f9d81f9c431173356461a8ecc0704f28 Section: misc -Size: 15745228 +Size: 19538764 Package: kubelet -Version: 1.5.6-01 -Installed-Size: 110307 +Version: 1.7.2-01 +Installed-Size: 142734 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.6-01_amd64_1d17f35764899052ae936a509327a60eb753f06befdaef9345f0f2cca966decb.deb +Filename: pool/kubelet_1.7.2-01_amd64_44cf5b68e3e7f013e080e18138dd0fe3cae7fb3046dc461840e8ef21b82c91b3.deb Priority: optional -SHA256: 1d17f35764899052ae936a509327a60eb753f06befdaef9345f0f2cca966decb +SHA256: 44cf5b68e3e7f013e080e18138dd0fe3cae7fb3046dc461840e8ef21b82c91b3 Section: misc -Size: 15739342 +Size: 19542234 Package: kubelet -Version: 1.5.7-00 -Installed-Size: 111740 +Version: 1.7.3-01 +Installed-Size: 142768 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.7-00_amd64_f872da8a98d992681d49218c24703762fc1a9699f9a6af46de24e9401d6fb0aa.deb +Filename: pool/kubelet_1.7.3-01_amd64_73541f99b3465ea2388e3f48d2207862a41c6e980782e82678d3a1bcab39630b.deb Priority: optional -SHA256: f872da8a98d992681d49218c24703762fc1a9699f9a6af46de24e9401d6fb0aa +SHA256: 73541f99b3465ea2388e3f48d2207862a41c6e980782e82678d3a1bcab39630b Section: misc -Size: 15914132 +Size: 19560498 Package: kubelet -Version: 1.5.7-01 -Installed-Size: 111740 +Version: 1.7.3-02 +Installed-Size: 142768 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.5.7-01_amd64_b4fdcd12d31717c829362d7ee07c850ec91cb7981afdce68c362f87ea25a8405.deb +Filename: pool/kubelet_1.7.3-02_amd64_5a07c5b0d7bb64d0ac96a48a3d30d36a154744ff4e393b1ffbf98ffc0e7be247.deb Priority: optional -SHA256: b4fdcd12d31717c829362d7ee07c850ec91cb7981afdce68c362f87ea25a8405 +SHA256: 5a07c5b0d7bb64d0ac96a48a3d30d36a154744ff4e393b1ffbf98ffc0e7be247 Section: misc -Size: 15888326 +Size: 19568898 Package: kubelet -Version: 1.6.0-00 -Installed-Size: 135429 +Version: 1.7.4-00 +Installed-Size: 142773 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.0-00_amd64_850ba773992934d5eb46b064274d3449bb5c07e2f1a1019b10e068e0a0efc78d.deb +Filename: pool/kubelet_1.7.4-00_amd64_8e9b2a6d7b233240f816591b8180d9e92b08a73afbe93ed0c783537831bbb4c6.deb Priority: optional -SHA256: 850ba773992934d5eb46b064274d3449bb5c07e2f1a1019b10e068e0a0efc78d +SHA256: 8e9b2a6d7b233240f816591b8180d9e92b08a73afbe93ed0c783537831bbb4c6 Section: misc -Size: 18264964 +Size: 19543932 Package: kubelet -Version: 1.6.0-01 -Installed-Size: 135429 +Version: 1.7.4-01 +Installed-Size: 142773 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.0-01_amd64_9bb4f26a5ea2154b8b75cb2c4e8cfa69d25b276b1727f5004fa96a92596a59b6.deb +Filename: pool/kubelet_1.7.4-01_amd64_e82906fddbd5d5ccfd58c261610a6cc88f6423e5a9f908f5df77f2e5833304fa.deb Priority: optional -SHA256: 9bb4f26a5ea2154b8b75cb2c4e8cfa69d25b276b1727f5004fa96a92596a59b6 +SHA256: e82906fddbd5d5ccfd58c261610a6cc88f6423e5a9f908f5df77f2e5833304fa Section: misc -Size: 18262772 +Size: 19560794 Package: kubelet -Version: 1.6.1-00 -Installed-Size: 135429 +Version: 1.7.5-00 +Installed-Size: 142793 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.1-00_amd64_8f4433bbf40b5c2fdf75089f520544969cca62ee53b7ea87eb4f1123fa2f4163.deb +Filename: pool/kubelet_1.7.5-00_amd64_0db3259738d749acca6ffff03ae4ccb87a4e6a64c3ac9884b34df7da936a3052.deb Priority: optional -SHA256: 8f4433bbf40b5c2fdf75089f520544969cca62ee53b7ea87eb4f1123fa2f4163 +SHA256: 0db3259738d749acca6ffff03ae4ccb87a4e6a64c3ac9884b34df7da936a3052 Section: misc -Size: 18259644 +Size: 19558032 Package: kubelet -Version: 1.6.1-01 -Installed-Size: 135429 +Version: 1.7.5-01 +Installed-Size: 142793 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.1-01_amd64_d1d4c6c5b3686288e5b8fdad38eaf3ef9311f2e441bc9da5f2595f1d11cd36e1.deb +Filename: pool/kubelet_1.7.5-01_amd64_a8e6374be2df5c4f1abf69de707e8d40ac0220d2afd078ecae52942f51ddcd14.deb Priority: optional -SHA256: d1d4c6c5b3686288e5b8fdad38eaf3ef9311f2e441bc9da5f2595f1d11cd36e1 +SHA256: a8e6374be2df5c4f1abf69de707e8d40ac0220d2afd078ecae52942f51ddcd14 Section: misc -Size: 18257744 +Size: 19559140 Package: kubelet -Version: 1.6.2-00 -Installed-Size: 135437 +Version: 1.7.6-00 +Installed-Size: 142797 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.2-00_amd64_8537952290ccb565bb9e6d7beaeeaa2b037eb5966df097d5ca95a7cb811c51d5.deb +Filename: pool/kubelet_1.7.6-00_amd64_65531a88ce1ba75817f0d6d32e10efcb1ea5aabaf70e9e9aa53f83180ca41834.deb Priority: optional -SHA256: 8537952290ccb565bb9e6d7beaeeaa2b037eb5966df097d5ca95a7cb811c51d5 +SHA256: 65531a88ce1ba75817f0d6d32e10efcb1ea5aabaf70e9e9aa53f83180ca41834 Section: misc -Size: 18258798 +Size: 19561332 Package: kubelet -Version: 1.6.2-01 -Installed-Size: 135437 +Version: 1.7.6-01 +Installed-Size: 142797 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.2-01_amd64_c75d1faa0625ba7da33942809a796af6edda0eda7ab21402b6a5435f86f4b2e9.deb +Filename: pool/kubelet_1.7.6-01_amd64_73fdc5da1321ad5f03116b2ff95bdd2fb3e86e21d08fbd3cc4b522ed0e28079e.deb Priority: optional -SHA256: c75d1faa0625ba7da33942809a796af6edda0eda7ab21402b6a5435f86f4b2e9 +SHA256: 73fdc5da1321ad5f03116b2ff95bdd2fb3e86e21d08fbd3cc4b522ed0e28079e Section: misc -Size: 18266834 +Size: 19550242 Package: kubelet -Version: 1.6.3-00 -Installed-Size: 135502 +Version: 1.7.7-00 +Installed-Size: 142797 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.3-00_amd64_a94b0cfa5b26939d87097dfd45260474c1effcad879e35940eb6d36e7d953d6c.deb +Filename: pool/kubelet_1.7.7-00_amd64_c66f68c9a638cc3acae96c86d6207f91a4e0efb27f43fadb02a78f72c71cc894.deb Priority: optional -SHA256: a94b0cfa5b26939d87097dfd45260474c1effcad879e35940eb6d36e7d953d6c +SHA256: c66f68c9a638cc3acae96c86d6207f91a4e0efb27f43fadb02a78f72c71cc894 Section: misc -Size: 18310234 +Size: 19556422 Package: kubelet -Version: 1.6.3-01 -Installed-Size: 135502 +Version: 1.7.7-01 +Installed-Size: 142797 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.3-01_amd64_2a99513cfb75e929ffbf11e20b9311f8a298f130716f26339ecce517d42b3297.deb +Filename: pool/kubelet_1.7.7-01_amd64_ed7701ff112d36936da2f20c596dbb7c23e13b9df21f6bfb0d51d355b579cad2.deb Priority: optional -SHA256: 2a99513cfb75e929ffbf11e20b9311f8a298f130716f26339ecce517d42b3297 +SHA256: ed7701ff112d36936da2f20c596dbb7c23e13b9df21f6bfb0d51d355b579cad2 Section: misc -Size: 18288858 +Size: 19558596 Package: kubelet -Version: 1.6.4-00 -Installed-Size: 135502 +Version: 1.7.8-00 +Installed-Size: 142673 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.4-00_amd64_2affcdcf43b6cc5a89237d0ceb1b5a3a90c605d4da73b97c5842f1a53368231d.deb +Filename: pool/kubelet_1.7.8-00_amd64_429a02bce3df7d943bbec28b2b35a9c9e1ba78a01484bfe1e4e7471a362c38bd.deb Priority: optional -SHA256: 2affcdcf43b6cc5a89237d0ceb1b5a3a90c605d4da73b97c5842f1a53368231d +SHA256: 429a02bce3df7d943bbec28b2b35a9c9e1ba78a01484bfe1e4e7471a362c38bd Section: misc -Size: 18304000 +Size: 19546794 Package: kubelet -Version: 1.6.4-01 -Installed-Size: 135502 +Version: 1.7.8-01 +Installed-Size: 142673 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.4-01_amd64_1315a3eca22fe54f50840a172bd5cc481876ab47cb53f216705bfd83b5ac3654.deb +Filename: pool/kubelet_1.7.8-01_amd64_8fff4fce7da3e0240e15818dafbd6f1de10c8412523ab5127e4d6997733c8491.deb Priority: optional -SHA256: 1315a3eca22fe54f50840a172bd5cc481876ab47cb53f216705bfd83b5ac3654 +SHA256: 8fff4fce7da3e0240e15818dafbd6f1de10c8412523ab5127e4d6997733c8491 Section: misc -Size: 18309978 +Size: 19542708 Package: kubelet -Version: 1.6.5-00 -Installed-Size: 135621 +Version: 1.7.9-00 +Installed-Size: 142679 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.5-00_amd64_2d1e2ea0fdd3f85594ed9d57b4bc19e3652f9bd66ad9099f0abfc268e6d9c379.deb +Filename: pool/kubelet_1.7.9-00_amd64_d4ba8476a776e3200c9376d352eb6abce0d573ecb6dd0961ea97d9db927b5dac.deb Priority: optional -SHA256: 2d1e2ea0fdd3f85594ed9d57b4bc19e3652f9bd66ad9099f0abfc268e6d9c379 +SHA256: d4ba8476a776e3200c9376d352eb6abce0d573ecb6dd0961ea97d9db927b5dac Section: misc -Size: 18328198 +Size: 19550418 Package: kubelet -Version: 1.6.5-01 -Installed-Size: 135621 +Version: 1.7.9-01 +Installed-Size: 142679 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.5-01_amd64_5c8209689a75443ac7cd918c9353ea14cd01f4e90a83ff6ac74a83ad7fc38d9f.deb +Filename: pool/kubelet_1.7.9-01_amd64_1d7a73cb3de7907e8bc784325a08bbc7ddc3f7cf70f12a441f817f604a79f0ff.deb Priority: optional -SHA256: 5c8209689a75443ac7cd918c9353ea14cd01f4e90a83ff6ac74a83ad7fc38d9f +SHA256: 1d7a73cb3de7907e8bc784325a08bbc7ddc3f7cf70f12a441f817f604a79f0ff Section: misc -Size: 18307244 +Size: 19544962 Package: kubelet -Version: 1.6.6-00 -Installed-Size: 135621 +Version: 1.7.10-00 +Installed-Size: 142679 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.6-00_amd64_7e64ef3101aff3c7e59b7e38c3ff4acf7659730aeda47fd43bb7a12384069f11.deb +Filename: pool/kubelet_1.7.10-00_amd64_4322e4474136b891848d5d67658b9cd22a41a834c88ecea382d58da092156556.deb Priority: optional -SHA256: 7e64ef3101aff3c7e59b7e38c3ff4acf7659730aeda47fd43bb7a12384069f11 +SHA256: 4322e4474136b891848d5d67658b9cd22a41a834c88ecea382d58da092156556 Section: misc -Size: 18327616 +Size: 19547156 Package: kubelet -Version: 1.6.6-01 -Installed-Size: 135621 +Version: 1.7.10-01 +Installed-Size: 142679 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.6-01_amd64_a16dc33161ee16dcfaabb0658a97fc3f49372db66af2bfe00f2249cef375fb47.deb +Filename: pool/kubelet_1.7.10-01_amd64_fe1de868c2cb929962e03802f96f9066c463271caa2d6bd991bbe96585d46b2b.deb Priority: optional -SHA256: a16dc33161ee16dcfaabb0658a97fc3f49372db66af2bfe00f2249cef375fb47 +SHA256: fe1de868c2cb929962e03802f96f9066c463271caa2d6bd991bbe96585d46b2b Section: misc -Size: 18312592 +Size: 19531352 Package: kubelet -Version: 1.6.7-00 -Installed-Size: 135626 +Version: 1.7.11-00 +Installed-Size: 142680 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.7-00_amd64_b3c7f8b1743cbb05af4fa62f159952572a4520a3289a742a0544fcd8068703e8.deb +Filename: pool/kubelet_1.7.11-00_amd64_e21f114f3eee04b13b64218805ae6e594171c5a8d3d28a35d88bc926ddf9d094.deb Priority: optional -SHA256: b3c7f8b1743cbb05af4fa62f159952572a4520a3289a742a0544fcd8068703e8 +SHA256: e21f114f3eee04b13b64218805ae6e594171c5a8d3d28a35d88bc926ddf9d094 Section: misc -Size: 18308982 +Size: 19538650 Package: kubelet -Version: 1.6.7-01 -Installed-Size: 135626 +Version: 1.7.11-01 +Installed-Size: 142680 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.7-01_amd64_307b05dfb47ccdcd50a6fdac9623e3f388f557b87424ca36d1fd6d41ee2b4ca1.deb +Filename: pool/kubelet_1.7.11-01_amd64_b0b19ff353777b3bf8b08ebffa9e2f2a140e9575a77d84e5621e27bae7a3f9be.deb Priority: optional -SHA256: 307b05dfb47ccdcd50a6fdac9623e3f388f557b87424ca36d1fd6d41ee2b4ca1 +SHA256: b0b19ff353777b3bf8b08ebffa9e2f2a140e9575a77d84e5621e27bae7a3f9be Section: misc -Size: 18303784 +Size: 19544874 Package: kubelet -Version: 1.6.8-00 -Installed-Size: 135631 +Version: 1.7.14-00 +Installed-Size: 143188 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.8-00_amd64_7bbb4de452b304799d6550d13e1065c439e798ccc9274d7e7ee2b30926b4dcd7.deb +Filename: pool/kubelet_1.7.14-00_amd64_d197387f749b3807e0b6498e4783303936b92087e286851fb86465c18b7506ce.deb Priority: optional -SHA256: 7bbb4de452b304799d6550d13e1065c439e798ccc9274d7e7ee2b30926b4dcd7 +SHA256: d197387f749b3807e0b6498e4783303936b92087e286851fb86465c18b7506ce Section: misc -Size: 18321568 +Size: 19591088 Package: kubelet -Version: 1.6.8-01 -Installed-Size: 135631 +Version: 1.7.15-00 +Installed-Size: 143182 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.8-01_amd64_8491be969b337db5213095b7e1d64e25ffb94cd834198936cd8f17692ae35405.deb +Filename: pool/kubelet_1.7.15-00_amd64_d92cc5ccec7b452c457c47c08cc6df68efab96b9b2f1406627d3a48e2f35b65e.deb Priority: optional -SHA256: 8491be969b337db5213095b7e1d64e25ffb94cd834198936cd8f17692ae35405 +SHA256: d92cc5ccec7b452c457c47c08cc6df68efab96b9b2f1406627d3a48e2f35b65e Section: misc -Size: 18308860 +Size: 19578042 Package: kubelet -Version: 1.6.9-00 -Installed-Size: 135631 +Version: 1.7.16-00 +Installed-Size: 143182 +Maintainer: Kubernetes Authors +Architecture: amd64 +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Description: Kubernetes Node Agent + The node agent of Kubernetes, the container cluster manager +Homepage: https://kubernetes.io +Filename: pool/kubelet_1.7.16-00_amd64_d73c96d4f76b0b2816580e414ed8db4ea753e5e969edcf4a2424bc92f83bce10.deb +Priority: optional +SHA256: d73c96d4f76b0b2816580e414ed8db4ea753e5e969edcf4a2424bc92f83bce10 +Section: misc +Size: 19584344 + +Package: kubelet +Version: 1.8.0-00 +Installed-Size: 134312 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.9-00_amd64_7ceae6daffdfbb50b2333063b8f06c5c8e704c82f4fcbf273f4d34a729ef82ef.deb +Filename: pool/kubelet_1.8.0-00_amd64_00b7c77c924d654c7def52c83cfeb9a3d1836c1e7b40683c3fe8207b0bd299d1.deb Priority: optional -SHA256: 7ceae6daffdfbb50b2333063b8f06c5c8e704c82f4fcbf273f4d34a729ef82ef +SHA256: 00b7c77c924d654c7def52c83cfeb9a3d1836c1e7b40683c3fe8207b0bd299d1 Section: misc -Size: 18335746 +Size: 19193922 Package: kubelet -Version: 1.6.9-01 -Installed-Size: 135631 +Version: 1.8.0-01 +Installed-Size: 134312 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.9-01_amd64_226d44d8f970337d3f07205583a00ddc05fed705a936d4a623186c20fe7e6604.deb +Filename: pool/kubelet_1.8.0-01_amd64_c85cfd1d6ea9f1d2f5141692bdd828f49a71bf48b64ad4e667292800693cf46f.deb Priority: optional -SHA256: 226d44d8f970337d3f07205583a00ddc05fed705a936d4a623186c20fe7e6604 +SHA256: c85cfd1d6ea9f1d2f5141692bdd828f49a71bf48b64ad4e667292800693cf46f Section: misc -Size: 18337776 +Size: 19197478 Package: kubelet -Version: 1.6.10-00 -Installed-Size: 135636 +Version: 1.8.1-00 +Installed-Size: 134314 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.10-00_amd64_b7ff1d3504ad670137f83f081de7d41768e9204c8f6ddd69c55e0032d8011e2a.deb +Filename: pool/kubelet_1.8.1-00_amd64_c0f1902d204f6741eff08560120bfe193b992596068158a2042988203132cd51.deb Priority: optional -SHA256: b7ff1d3504ad670137f83f081de7d41768e9204c8f6ddd69c55e0032d8011e2a +SHA256: c0f1902d204f6741eff08560120bfe193b992596068158a2042988203132cd51 Section: misc -Size: 18320838 +Size: 19199954 Package: kubelet -Version: 1.6.10-01 -Installed-Size: 135636 +Version: 1.8.1-01 +Installed-Size: 134314 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.10-01_amd64_79b4282c2e51af49fd6fb72eed00d44ccfc99b87a7f52dea9bf3c70afdef6b05.deb +Filename: pool/kubelet_1.8.1-01_amd64_890853010cc549b3909a5a6c271bea87eccfd70c48747e2cdcc14dba975dec7b.deb Priority: optional -SHA256: 79b4282c2e51af49fd6fb72eed00d44ccfc99b87a7f52dea9bf3c70afdef6b05 +SHA256: 890853010cc549b3909a5a6c271bea87eccfd70c48747e2cdcc14dba975dec7b Section: misc -Size: 18325048 +Size: 19203696 Package: kubelet -Version: 1.6.11-00 -Installed-Size: 135636 +Version: 1.8.2-00 +Installed-Size: 134311 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.11-00_amd64_2dd18ba275fd1bf41acd6280975fd7a45467ca2f2842e61703c2787856f4e2a7.deb +Filename: pool/kubelet_1.8.2-00_amd64_9646b1262ea4c99a89e94801b150e355a4e984c462bf8fb8a2fe9a33dacd74e0.deb Priority: optional -SHA256: 2dd18ba275fd1bf41acd6280975fd7a45467ca2f2842e61703c2787856f4e2a7 +SHA256: 9646b1262ea4c99a89e94801b150e355a4e984c462bf8fb8a2fe9a33dacd74e0 Section: misc -Size: 18310162 +Size: 19207956 Package: kubelet -Version: 1.6.11-01 -Installed-Size: 135636 +Version: 1.8.2-01 +Installed-Size: 134311 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.11-01_amd64_b61d8439af0c31b8a0e10e18e2f4f161f1f651ab4ab7407077fca91d670981a9.deb +Filename: pool/kubelet_1.8.2-01_amd64_d740f0a12bba7d05f91e04223280967214dce453ca125ced549696d03f84e60d.deb Priority: optional -SHA256: b61d8439af0c31b8a0e10e18e2f4f161f1f651ab4ab7407077fca91d670981a9 +SHA256: d740f0a12bba7d05f91e04223280967214dce453ca125ced549696d03f84e60d Section: misc -Size: 18314280 +Size: 19211536 Package: kubelet -Version: 1.6.12-00 -Installed-Size: 135636 +Version: 1.8.3-00 +Installed-Size: 134344 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.12-00_amd64_c302b5075f37fc8bdc251b2170b1b7b358c0faaf993ee1f0cf20204e971009ef.deb +Filename: pool/kubelet_1.8.3-00_amd64_10bf853bba6b7713f8f3001f92612637ccee6893e699f7c41d91d2b4c3e6e25f.deb Priority: optional -SHA256: c302b5075f37fc8bdc251b2170b1b7b358c0faaf993ee1f0cf20204e971009ef +SHA256: 10bf853bba6b7713f8f3001f92612637ccee6893e699f7c41d91d2b4c3e6e25f Section: misc -Size: 18309998 +Size: 19202064 Package: kubelet -Version: 1.6.12-01 -Installed-Size: 135636 +Version: 1.8.3-01 +Installed-Size: 134344 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.12-01_amd64_f61d249652954ea98d139332c81d1fb99db2b56d40265bc4aa88b7e8a1210740.deb +Filename: pool/kubelet_1.8.3-01_amd64_7ddb604efa4a846fc72f03e7b5e03a3644a40a4a3570ca78269fc6d919616317.deb Priority: optional -SHA256: f61d249652954ea98d139332c81d1fb99db2b56d40265bc4aa88b7e8a1210740 +SHA256: 7ddb604efa4a846fc72f03e7b5e03a3644a40a4a3570ca78269fc6d919616317 Section: misc -Size: 18303806 +Size: 19214678 Package: kubelet -Version: 1.6.13-00 -Installed-Size: 135644 +Version: 1.8.4-00 +Installed-Size: 134422 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.13-00_amd64_7355ee8511bff4cb8103e18f2e6f86bfa691c54bd6556da7950c18c8de6b4ca9.deb +Filename: pool/kubelet_1.8.4-00_amd64_601882506070723b643552ae98325c849840b09b1fc1666de74c7b69a07f06df.deb Priority: optional -SHA256: 7355ee8511bff4cb8103e18f2e6f86bfa691c54bd6556da7950c18c8de6b4ca9 +SHA256: 601882506070723b643552ae98325c849840b09b1fc1666de74c7b69a07f06df Section: misc -Size: 18332358 +Size: 19208628 Package: kubelet -Version: 1.6.13-01 -Installed-Size: 135644 +Version: 1.8.4-01 +Installed-Size: 134422 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.6.13-01_amd64_71548a4d6d62a90932f286f3235b758b9f42572dec6fe859e405af394794ec11.deb +Filename: pool/kubelet_1.8.4-01_amd64_e478234f2876b3170efac14ad2eb58893e8dd72fe1a7962575356d2445d8d1b4.deb Priority: optional -SHA256: 71548a4d6d62a90932f286f3235b758b9f42572dec6fe859e405af394794ec11 +SHA256: e478234f2876b3170efac14ad2eb58893e8dd72fe1a7962575356d2445d8d1b4 Section: misc -Size: 18329924 +Size: 19208162 Package: kubelet -Version: 1.7.0-00 -Installed-Size: 141843 +Version: 1.8.5-00 +Installed-Size: 134598 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.0-00_amd64_b7c9be22a6379d8cc47ba1183bbc9de0acf49ad1418ffa8ae57628ad1d7c051f.deb +Filename: pool/kubelet_1.8.5-00_amd64_19c18818c0a5efc2fdbc86c87407db05d1de403b01a35e3a145b23cf3995ce5c.deb Priority: optional -SHA256: b7c9be22a6379d8cc47ba1183bbc9de0acf49ad1418ffa8ae57628ad1d7c051f +SHA256: 19c18818c0a5efc2fdbc86c87407db05d1de403b01a35e3a145b23cf3995ce5c Section: misc -Size: 19391892 +Size: 19250488 Package: kubelet -Version: 1.7.0-01 -Installed-Size: 141843 +Version: 1.8.5-01 +Installed-Size: 134598 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.0-01_amd64_12c44bfb8e7be653a22b2c2b9a988f7643bb0df9e00daa13cd54099a54453d6c.deb +Filename: pool/kubelet_1.8.5-01_amd64_af944a975e45ee2889cfb6117de955a68f7e8233ab831d073a179eccde1a3298.deb Priority: optional -SHA256: 12c44bfb8e7be653a22b2c2b9a988f7643bb0df9e00daa13cd54099a54453d6c +SHA256: af944a975e45ee2889cfb6117de955a68f7e8233ab831d073a179eccde1a3298 Section: misc -Size: 19393554 +Size: 19254630 Package: kubelet -Version: 1.7.1-00 -Installed-Size: 141843 +Version: 1.8.6-00 +Installed-Size: 134583 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.1-00_amd64_8e6aeef38ca042b85765751652f8115960892ca4cbd1a906b63197931351cb8d.deb +Filename: pool/kubelet_1.8.6-00_amd64_39a5f313074cbc2dda28f97cc7739c352f0037895211c4f894845dc74063711b.deb Priority: optional -SHA256: 8e6aeef38ca042b85765751652f8115960892ca4cbd1a906b63197931351cb8d +SHA256: 39a5f313074cbc2dda28f97cc7739c352f0037895211c4f894845dc74063711b Section: misc -Size: 19400942 +Size: 19246028 Package: kubelet -Version: 1.7.1-01 -Installed-Size: 141843 +Version: 1.8.7-00 +Installed-Size: 134878 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.1-01_amd64_100fffc507151ead00e2c44cb2a116be934080fe6deac29e72cf0bf3712f6bc8.deb +Filename: pool/kubelet_1.8.7-00_amd64_24344d1fccddb84f462d4458dc7ef60516b7b34c8f7e53050b8cebd904f1a8b0.deb Priority: optional -SHA256: 100fffc507151ead00e2c44cb2a116be934080fe6deac29e72cf0bf3712f6bc8 +SHA256: 24344d1fccddb84f462d4458dc7ef60516b7b34c8f7e53050b8cebd904f1a8b0 Section: misc -Size: 19401102 +Size: 19240726 Package: kubelet -Version: 1.7.2-00 -Installed-Size: 142734 +Version: 1.8.8-00 +Installed-Size: 134877 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.2-00_amd64_d685940c01bd21e18caa8528cf793b09f9d81f9c431173356461a8ecc0704f28.deb +Filename: pool/kubelet_1.8.8-00_amd64_64d4ec64faa4ed93bf67900985ab8b87b0c96449c0a5b23dad8fe0138fef99de.deb Priority: optional -SHA256: d685940c01bd21e18caa8528cf793b09f9d81f9c431173356461a8ecc0704f28 +SHA256: 64d4ec64faa4ed93bf67900985ab8b87b0c96449c0a5b23dad8fe0138fef99de Section: misc -Size: 19538764 +Size: 19255030 Package: kubelet -Version: 1.7.2-01 -Installed-Size: 142734 +Version: 1.8.9-00 +Installed-Size: 134960 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.2-01_amd64_44cf5b68e3e7f013e080e18138dd0fe3cae7fb3046dc461840e8ef21b82c91b3.deb +Filename: pool/kubelet_1.8.9-00_amd64_9319e46c4964ea2dbb3da011b491953ad95b5b038861ce94d59db714c74dd036.deb Priority: optional -SHA256: 44cf5b68e3e7f013e080e18138dd0fe3cae7fb3046dc461840e8ef21b82c91b3 +SHA256: 9319e46c4964ea2dbb3da011b491953ad95b5b038861ce94d59db714c74dd036 Section: misc -Size: 19542234 +Size: 19268486 Package: kubelet -Version: 1.7.3-01 -Installed-Size: 142768 +Version: 1.8.10-00 +Installed-Size: 134966 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.3-01_amd64_73541f99b3465ea2388e3f48d2207862a41c6e980782e82678d3a1bcab39630b.deb +Filename: pool/kubelet_1.8.10-00_amd64_f02917067d77dbcb01ab6b881f68314d1e6b4ff178560e2d596d9c3226726c79.deb Priority: optional -SHA256: 73541f99b3465ea2388e3f48d2207862a41c6e980782e82678d3a1bcab39630b +SHA256: f02917067d77dbcb01ab6b881f68314d1e6b4ff178560e2d596d9c3226726c79 Section: misc -Size: 19560498 +Size: 19271308 Package: kubelet -Version: 1.7.3-02 -Installed-Size: 142768 +Version: 1.8.11-00 +Installed-Size: 134978 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.3-02_amd64_5a07c5b0d7bb64d0ac96a48a3d30d36a154744ff4e393b1ffbf98ffc0e7be247.deb +Filename: pool/kubelet_1.8.11-00_amd64_e38ba6a15aaeda29fe2866b8b1365702d4b4dea577d646df50da2f8c5ee762cf.deb Priority: optional -SHA256: 5a07c5b0d7bb64d0ac96a48a3d30d36a154744ff4e393b1ffbf98ffc0e7be247 +SHA256: e38ba6a15aaeda29fe2866b8b1365702d4b4dea577d646df50da2f8c5ee762cf Section: misc -Size: 19568898 +Size: 19280424 Package: kubelet -Version: 1.7.4-00 -Installed-Size: 142773 +Version: 1.8.12-00 +Installed-Size: 134978 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.4-00_amd64_8e9b2a6d7b233240f816591b8180d9e92b08a73afbe93ed0c783537831bbb4c6.deb +Filename: pool/kubelet_1.8.12-00_amd64_7dc5d77b1b85ce6eef0bb128ab5b1790affc0542822facf4515ffcea051b7781.deb Priority: optional -SHA256: 8e9b2a6d7b233240f816591b8180d9e92b08a73afbe93ed0c783537831bbb4c6 +SHA256: 7dc5d77b1b85ce6eef0bb128ab5b1790affc0542822facf4515ffcea051b7781 Section: misc -Size: 19543932 +Size: 19273942 Package: kubelet -Version: 1.7.4-01 -Installed-Size: 142773 +Version: 1.8.13-00 +Installed-Size: 134978 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.4-01_amd64_e82906fddbd5d5ccfd58c261610a6cc88f6423e5a9f908f5df77f2e5833304fa.deb +Filename: pool/kubelet_1.8.13-00_amd64_95894fc832a74a6be8461c516595b4e7ea12edf1e5f4ff20599d23fca50f491f.deb Priority: optional -SHA256: e82906fddbd5d5ccfd58c261610a6cc88f6423e5a9f908f5df77f2e5833304fa +SHA256: 95894fc832a74a6be8461c516595b4e7ea12edf1e5f4ff20599d23fca50f491f Section: misc -Size: 19560794 +Size: 19283464 Package: kubelet -Version: 1.7.5-00 -Installed-Size: 142793 +Version: 1.8.14-00 +Installed-Size: 134991 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.5-00_amd64_0db3259738d749acca6ffff03ae4ccb87a4e6a64c3ac9884b34df7da936a3052.deb +Filename: pool/kubelet_1.8.14-00_amd64_b5f96759cc1c51138474a66738a94482428d90a0b3e553505d7dafe251503993.deb Priority: optional -SHA256: 0db3259738d749acca6ffff03ae4ccb87a4e6a64c3ac9884b34df7da936a3052 +SHA256: b5f96759cc1c51138474a66738a94482428d90a0b3e553505d7dafe251503993 Section: misc -Size: 19558032 +Size: 19283054 Package: kubelet -Version: 1.7.5-01 -Installed-Size: 142793 +Version: 1.8.15-00 +Installed-Size: 135752 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.5-01_amd64_a8e6374be2df5c4f1abf69de707e8d40ac0220d2afd078ecae52942f51ddcd14.deb +Filename: pool/kubelet_1.8.15-00_amd64_dd4034732b629067c07cf989c642a7a612afd727fdb15b3a4fc9b3bb94c8122d.deb Priority: optional -SHA256: a8e6374be2df5c4f1abf69de707e8d40ac0220d2afd078ecae52942f51ddcd14 +SHA256: dd4034732b629067c07cf989c642a7a612afd727fdb15b3a4fc9b3bb94c8122d Section: misc -Size: 19559140 +Size: 19354960 Package: kubelet -Version: 1.7.6-00 -Installed-Size: 142797 +Version: 1.9.0-00 +Installed-Size: 144333 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.6-00_amd64_65531a88ce1ba75817f0d6d32e10efcb1ea5aabaf70e9e9aa53f83180ca41834.deb +Filename: pool/kubelet_1.9.0-00_amd64_100df9788226fe76ce828503cf24b8c4c6f9705f15504093844c9138e0b2a97f.deb Priority: optional -SHA256: 65531a88ce1ba75817f0d6d32e10efcb1ea5aabaf70e9e9aa53f83180ca41834 +SHA256: 100df9788226fe76ce828503cf24b8c4c6f9705f15504093844c9138e0b2a97f Section: misc -Size: 19561332 +Size: 20452588 Package: kubelet -Version: 1.7.6-01 -Installed-Size: 142797 +Version: 1.9.1-00 +Installed-Size: 144345 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.6-01_amd64_73fdc5da1321ad5f03116b2ff95bdd2fb3e86e21d08fbd3cc4b522ed0e28079e.deb +Filename: pool/kubelet_1.9.1-00_amd64_e1111bdd0cb45976216b7498a0b1d68d15ddaacc462a067d831b0f20ae8c276b.deb Priority: optional -SHA256: 73fdc5da1321ad5f03116b2ff95bdd2fb3e86e21d08fbd3cc4b522ed0e28079e +SHA256: e1111bdd0cb45976216b7498a0b1d68d15ddaacc462a067d831b0f20ae8c276b Section: misc -Size: 19550242 +Size: 20472594 Package: kubelet -Version: 1.7.7-00 -Installed-Size: 142797 +Version: 1.9.2-00 +Installed-Size: 144362 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.7-00_amd64_c66f68c9a638cc3acae96c86d6207f91a4e0efb27f43fadb02a78f72c71cc894.deb +Filename: pool/kubelet_1.9.2-00_amd64_cdb2335fec48cd8cb3ad2bdd874fb29828ceb893d200ebee44657ae51f0851b4.deb Priority: optional -SHA256: c66f68c9a638cc3acae96c86d6207f91a4e0efb27f43fadb02a78f72c71cc894 +SHA256: cdb2335fec48cd8cb3ad2bdd874fb29828ceb893d200ebee44657ae51f0851b4 Section: misc -Size: 19556422 +Size: 20454180 Package: kubelet -Version: 1.7.7-01 -Installed-Size: 142797 +Version: 1.9.3-00 +Installed-Size: 144367 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.7-01_amd64_ed7701ff112d36936da2f20c596dbb7c23e13b9df21f6bfb0d51d355b579cad2.deb +Filename: pool/kubelet_1.9.3-00_amd64_50317ce119d81a3a69ba891c5c77b48b153b97a175598dc62ee811e081a063ee.deb Priority: optional -SHA256: ed7701ff112d36936da2f20c596dbb7c23e13b9df21f6bfb0d51d355b579cad2 +SHA256: 50317ce119d81a3a69ba891c5c77b48b153b97a175598dc62ee811e081a063ee Section: misc -Size: 19558596 +Size: 20454776 Package: kubelet -Version: 1.7.8-00 -Installed-Size: 142673 +Version: 1.9.4-00 +Installed-Size: 143881 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.8-00_amd64_429a02bce3df7d943bbec28b2b35a9c9e1ba78a01484bfe1e4e7471a362c38bd.deb +Filename: pool/kubelet_1.9.4-00_amd64_c8c2af29e421adf188c94b7049e30ed1b6368dad49cfe5e8c865d43a16be6b76.deb Priority: optional -SHA256: 429a02bce3df7d943bbec28b2b35a9c9e1ba78a01484bfe1e4e7471a362c38bd +SHA256: c8c2af29e421adf188c94b7049e30ed1b6368dad49cfe5e8c865d43a16be6b76 Section: misc -Size: 19546794 +Size: 20395024 Package: kubelet -Version: 1.7.8-01 -Installed-Size: 142673 +Version: 1.9.5-00 +Installed-Size: 143885 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.8-01_amd64_8fff4fce7da3e0240e15818dafbd6f1de10c8412523ab5127e4d6997733c8491.deb +Filename: pool/kubelet_1.9.5-00_amd64_5400807b4c667bfeaa5074245fb1edb20cf4b1b7f3ac88cb23df437f8558cd13.deb Priority: optional -SHA256: 8fff4fce7da3e0240e15818dafbd6f1de10c8412523ab5127e4d6997733c8491 +SHA256: 5400807b4c667bfeaa5074245fb1edb20cf4b1b7f3ac88cb23df437f8558cd13 Section: misc -Size: 19542708 +Size: 20397784 Package: kubelet -Version: 1.7.9-00 -Installed-Size: 142679 +Version: 1.9.6-00 +Installed-Size: 143885 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.9-00_amd64_d4ba8476a776e3200c9376d352eb6abce0d573ecb6dd0961ea97d9db927b5dac.deb +Filename: pool/kubelet_1.9.6-00_amd64_abc92a438e6bcade2e879b789fa0634474f448df7428157703206448805a948f.deb Priority: optional -SHA256: d4ba8476a776e3200c9376d352eb6abce0d573ecb6dd0961ea97d9db927b5dac +SHA256: abc92a438e6bcade2e879b789fa0634474f448df7428157703206448805a948f Section: misc -Size: 19550418 +Size: 20393264 Package: kubelet -Version: 1.7.9-01 -Installed-Size: 142679 +Version: 1.9.7-00 +Installed-Size: 143931 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.9-01_amd64_1d7a73cb3de7907e8bc784325a08bbc7ddc3f7cf70f12a441f817f604a79f0ff.deb +Filename: pool/kubelet_1.9.7-00_amd64_6a510a9b3d8b54473e8237cda857be4487dbc8cbd2b6b84ad292f5a3c3ec01c5.deb Priority: optional -SHA256: 1d7a73cb3de7907e8bc784325a08bbc7ddc3f7cf70f12a441f817f604a79f0ff +SHA256: 6a510a9b3d8b54473e8237cda857be4487dbc8cbd2b6b84ad292f5a3c3ec01c5 Section: misc -Size: 19544962 +Size: 20400054 Package: kubelet -Version: 1.7.10-00 -Installed-Size: 142679 +Version: 1.9.8-00 +Installed-Size: 143924 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.10-00_amd64_4322e4474136b891848d5d67658b9cd22a41a834c88ecea382d58da092156556.deb +Filename: pool/kubelet_1.9.8-00_amd64_1119302b483e26aa69963e683002056df72acee69e06514e7773b3786b258053.deb Priority: optional -SHA256: 4322e4474136b891848d5d67658b9cd22a41a834c88ecea382d58da092156556 +SHA256: 1119302b483e26aa69963e683002056df72acee69e06514e7773b3786b258053 Section: misc -Size: 19547156 +Size: 20397514 Package: kubelet -Version: 1.7.10-01 -Installed-Size: 142679 +Version: 1.9.9-00 +Installed-Size: 144714 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.10-01_amd64_fe1de868c2cb929962e03802f96f9066c463271caa2d6bd991bbe96585d46b2b.deb +Filename: pool/kubelet_1.9.9-00_amd64_5218659dc22bcd6b18fe18ac110427ec8be12e175b290ca5ea5e60d8a3e531a6.deb Priority: optional -SHA256: fe1de868c2cb929962e03802f96f9066c463271caa2d6bd991bbe96585d46b2b +SHA256: 5218659dc22bcd6b18fe18ac110427ec8be12e175b290ca5ea5e60d8a3e531a6 Section: misc -Size: 19531352 +Size: 20504156 Package: kubelet -Version: 1.7.11-00 -Installed-Size: 142680 +Version: 1.9.10-00 +Installed-Size: 144717 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.11-00_amd64_e21f114f3eee04b13b64218805ae6e594171c5a8d3d28a35d88bc926ddf9d094.deb +Filename: pool/kubelet_1.9.10-00_amd64_c10641e06a3c2f5ff2cc6c97686c29fb40f076b5c7f2d37754c84f4fb4fed2a9.deb Priority: optional -SHA256: e21f114f3eee04b13b64218805ae6e594171c5a8d3d28a35d88bc926ddf9d094 +SHA256: c10641e06a3c2f5ff2cc6c97686c29fb40f076b5c7f2d37754c84f4fb4fed2a9 Section: misc -Size: 19538650 +Size: 20489536 Package: kubelet -Version: 1.7.11-01 -Installed-Size: 142680 +Version: 1.9.11-00 +Installed-Size: 144727 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.11-01_amd64_b0b19ff353777b3bf8b08ebffa9e2f2a140e9575a77d84e5621e27bae7a3f9be.deb +Filename: pool/kubelet_1.9.11-00_amd64_bcbc6de418e0e97c3210bab33716b8ecb0ad151f0948021437800aa3b4d9bbab.deb Priority: optional -SHA256: b0b19ff353777b3bf8b08ebffa9e2f2a140e9575a77d84e5621e27bae7a3f9be +SHA256: bcbc6de418e0e97c3210bab33716b8ecb0ad151f0948021437800aa3b4d9bbab Section: misc -Size: 19544874 +Size: 20499708 Package: kubelet -Version: 1.7.14-00 -Installed-Size: 143188 +Version: 1.10.0-00 +Installed-Size: 149213 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.14-00_amd64_d197387f749b3807e0b6498e4783303936b92087e286851fb86465c18b7506ce.deb +Filename: pool/kubelet_1.10.0-00_amd64_211eced3f0715db1dbbb9fa0973299a8f6b764ef43e25bd94fece3947b13091f.deb Priority: optional -SHA256: d197387f749b3807e0b6498e4783303936b92087e286851fb86465c18b7506ce +SHA256: 211eced3f0715db1dbbb9fa0973299a8f6b764ef43e25bd94fece3947b13091f Section: misc -Size: 19591088 +Size: 21089520 Package: kubelet -Version: 1.7.15-00 -Installed-Size: 143182 +Version: 1.10.1-00 +Installed-Size: 149240 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.15-00_amd64_d92cc5ccec7b452c457c47c08cc6df68efab96b9b2f1406627d3a48e2f35b65e.deb +Filename: pool/kubelet_1.10.1-00_amd64_7002d1aa12fea2f0c81efdc5ea577607e387d21177c6fa57e1f897037325b824.deb Priority: optional -SHA256: d92cc5ccec7b452c457c47c08cc6df68efab96b9b2f1406627d3a48e2f35b65e +SHA256: 7002d1aa12fea2f0c81efdc5ea577607e387d21177c6fa57e1f897037325b824 Section: misc -Size: 19578042 +Size: 21111050 Package: kubelet -Version: 1.7.16-00 -Installed-Size: 143182 +Version: 1.10.2-00 +Installed-Size: 149257 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.7.16-00_amd64_d73c96d4f76b0b2816580e414ed8db4ea753e5e969edcf4a2424bc92f83bce10.deb +Filename: pool/kubelet_1.10.2-00_amd64_3ff69468521886de7b64ba9b4932bab7e6ef71f7344ace36ac0855df7bd2427a.deb Priority: optional -SHA256: d73c96d4f76b0b2816580e414ed8db4ea753e5e969edcf4a2424bc92f83bce10 +SHA256: 3ff69468521886de7b64ba9b4932bab7e6ef71f7344ace36ac0855df7bd2427a Section: misc -Size: 19584344 +Size: 21096048 Package: kubelet -Version: 1.8.0-00 -Installed-Size: 134312 +Version: 1.10.3-00 +Installed-Size: 149277 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.0-00_amd64_00b7c77c924d654c7def52c83cfeb9a3d1836c1e7b40683c3fe8207b0bd299d1.deb +Filename: pool/kubelet_1.10.3-00_amd64_cc71162f227c16487999c2f8190bf8714127410633b62383c8b733c6fce23fbb.deb Priority: optional -SHA256: 00b7c77c924d654c7def52c83cfeb9a3d1836c1e7b40683c3fe8207b0bd299d1 +SHA256: cc71162f227c16487999c2f8190bf8714127410633b62383c8b733c6fce23fbb Section: misc -Size: 19193922 +Size: 21103218 Package: kubelet -Version: 1.8.0-01 -Installed-Size: 134312 +Version: 1.10.4-00 +Installed-Size: 149312 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.0-01_amd64_c85cfd1d6ea9f1d2f5141692bdd828f49a71bf48b64ad4e667292800693cf46f.deb +Filename: pool/kubelet_1.10.4-00_amd64_999ab6b2379ea1496d0e8f2099ceffb39a23043039484707639cade63bb07753.deb Priority: optional -SHA256: c85cfd1d6ea9f1d2f5141692bdd828f49a71bf48b64ad4e667292800693cf46f +SHA256: 999ab6b2379ea1496d0e8f2099ceffb39a23043039484707639cade63bb07753 Section: misc -Size: 19197478 +Size: 21105116 Package: kubelet -Version: 1.8.1-00 -Installed-Size: 134314 +Version: 1.10.5-00 +Installed-Size: 152161 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.1-00_amd64_c0f1902d204f6741eff08560120bfe193b992596068158a2042988203132cd51.deb +Filename: pool/kubelet_1.10.5-00_amd64_10aa030ab7d406ca639c57d16ab154b32e75f55925fb24065e33359c918722af.deb Priority: optional -SHA256: c0f1902d204f6741eff08560120bfe193b992596068158a2042988203132cd51 +SHA256: 10aa030ab7d406ca639c57d16ab154b32e75f55925fb24065e33359c918722af Section: misc -Size: 19199954 +Size: 21366116 Package: kubelet -Version: 1.8.1-01 -Installed-Size: 134314 +Version: 1.10.6-00 +Installed-Size: 152160 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.1-01_amd64_890853010cc549b3909a5a6c271bea87eccfd70c48747e2cdcc14dba975dec7b.deb +Filename: pool/kubelet_1.10.6-00_amd64_3430c8f965aa03419b96fb43ec3ec9ff3471a0413e0e107540343aee33e20a66.deb Priority: optional -SHA256: 890853010cc549b3909a5a6c271bea87eccfd70c48747e2cdcc14dba975dec7b +SHA256: 3430c8f965aa03419b96fb43ec3ec9ff3471a0413e0e107540343aee33e20a66 Section: misc -Size: 19203696 +Size: 21376832 Package: kubelet -Version: 1.8.2-00 -Installed-Size: 134311 +Version: 1.10.7-00 +Installed-Size: 152173 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.2-00_amd64_9646b1262ea4c99a89e94801b150e355a4e984c462bf8fb8a2fe9a33dacd74e0.deb +Filename: pool/kubelet_1.10.7-00_amd64_fd815d1c628fc90f5a0a3b3150d3314e6639a91c940fc212e13114a7086f1b10.deb Priority: optional -SHA256: 9646b1262ea4c99a89e94801b150e355a4e984c462bf8fb8a2fe9a33dacd74e0 +SHA256: fd815d1c628fc90f5a0a3b3150d3314e6639a91c940fc212e13114a7086f1b10 Section: misc -Size: 19207956 +Size: 21375674 Package: kubelet -Version: 1.8.2-01 -Installed-Size: 134311 +Version: 1.10.8-00 +Installed-Size: 152174 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.2-01_amd64_d740f0a12bba7d05f91e04223280967214dce453ca125ced549696d03f84e60d.deb +Filename: pool/kubelet_1.10.8-00_amd64_443f3fabf3e6a71f685c3d422c4a50ceddce46ab3ac2778c9ee5adf8879f8d6b.deb Priority: optional -SHA256: d740f0a12bba7d05f91e04223280967214dce453ca125ced549696d03f84e60d +SHA256: 443f3fabf3e6a71f685c3d422c4a50ceddce46ab3ac2778c9ee5adf8879f8d6b Section: misc -Size: 19211536 +Size: 21385958 Package: kubelet -Version: 1.8.3-00 -Installed-Size: 134344 +Version: 1.10.9-00 +Installed-Size: 152188 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.3-00_amd64_10bf853bba6b7713f8f3001f92612637ccee6893e699f7c41d91d2b4c3e6e25f.deb +Filename: pool/kubelet_1.10.9-00_amd64_dcd129388b2fe925712da9f69725a7ed91bf261bf401773cf1617a103f366a4c.deb Priority: optional -SHA256: 10bf853bba6b7713f8f3001f92612637ccee6893e699f7c41d91d2b4c3e6e25f +SHA256: dcd129388b2fe925712da9f69725a7ed91bf261bf401773cf1617a103f366a4c Section: misc -Size: 19202064 +Size: 21387506 Package: kubelet -Version: 1.8.3-01 -Installed-Size: 134344 +Version: 1.10.10-00 +Installed-Size: 152217 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.3-01_amd64_7ddb604efa4a846fc72f03e7b5e03a3644a40a4a3570ca78269fc6d919616317.deb +Filename: pool/kubelet_1.10.10-00_amd64_f0b95158b6b5823d1b379a26f3ae5bb58cb5e07a3910de4581d9755abc2d62cb.deb Priority: optional -SHA256: 7ddb604efa4a846fc72f03e7b5e03a3644a40a4a3570ca78269fc6d919616317 +SHA256: f0b95158b6b5823d1b379a26f3ae5bb58cb5e07a3910de4581d9755abc2d62cb Section: misc -Size: 19214678 +Size: 21377592 Package: kubelet -Version: 1.8.4-00 -Installed-Size: 134422 +Version: 1.10.11-00 +Installed-Size: 152211 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.4-00_amd64_601882506070723b643552ae98325c849840b09b1fc1666de74c7b69a07f06df.deb +Filename: pool/kubelet_1.10.11-00_amd64_66d5acc214366f2a01a36038266b50d14d794d635a05d760d5bce25573b18c6a.deb Priority: optional -SHA256: 601882506070723b643552ae98325c849840b09b1fc1666de74c7b69a07f06df +SHA256: 66d5acc214366f2a01a36038266b50d14d794d635a05d760d5bce25573b18c6a Section: misc -Size: 19208628 +Size: 21390086 Package: kubelet -Version: 1.8.4-01 -Installed-Size: 134422 +Version: 1.10.12-00 +Installed-Size: 152223 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.4-01_amd64_e478234f2876b3170efac14ad2eb58893e8dd72fe1a7962575356d2445d8d1b4.deb +Filename: pool/kubelet_1.10.12-00_amd64_c827b0e83b82824601b1894ce8528e71f3ed11467a742b1e097b5f5b1daf989c.deb Priority: optional -SHA256: e478234f2876b3170efac14ad2eb58893e8dd72fe1a7962575356d2445d8d1b4 +SHA256: c827b0e83b82824601b1894ce8528e71f3ed11467a742b1e097b5f5b1daf989c Section: misc -Size: 19208162 +Size: 21394174 Package: kubelet -Version: 1.8.5-00 -Installed-Size: 134598 +Version: 1.10.13-00 +Installed-Size: 152216 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.5-00_amd64_19c18818c0a5efc2fdbc86c87407db05d1de403b01a35e3a145b23cf3995ce5c.deb +Filename: pool/kubelet_1.10.13-00_amd64_aa7069a9b903f263a16bf54059363e75b697b6ef9529c1042f8fe2e238eaf686.deb Priority: optional -SHA256: 19c18818c0a5efc2fdbc86c87407db05d1de403b01a35e3a145b23cf3995ce5c +SHA256: aa7069a9b903f263a16bf54059363e75b697b6ef9529c1042f8fe2e238eaf686 Section: misc -Size: 19250488 +Size: 21375724 Package: kubelet -Version: 1.8.5-01 -Installed-Size: 134598 +Version: 1.11.0-00 +Installed-Size: 159217 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.5-01_amd64_af944a975e45ee2889cfb6117de955a68f7e8233ab831d073a179eccde1a3298.deb +Filename: pool/kubelet_1.11.0-00_amd64_464fcc0e54df9ec18935f8b36f33cb048a3a6c638ec80205900bff48dc61b2a6.deb Priority: optional -SHA256: af944a975e45ee2889cfb6117de955a68f7e8233ab831d073a179eccde1a3298 +SHA256: 464fcc0e54df9ec18935f8b36f33cb048a3a6c638ec80205900bff48dc61b2a6 Section: misc -Size: 19254630 +Size: 23270046 Package: kubelet -Version: 1.8.6-00 -Installed-Size: 134583 +Version: 1.11.1-00 +Installed-Size: 159249 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.6-00_amd64_39a5f313074cbc2dda28f97cc7739c352f0037895211c4f894845dc74063711b.deb +Filename: pool/kubelet_1.11.1-00_amd64_28c71ce044870c518d0cc12602e331ffae5729d26b4873c99ec587682ea88781.deb Priority: optional -SHA256: 39a5f313074cbc2dda28f97cc7739c352f0037895211c4f894845dc74063711b +SHA256: 28c71ce044870c518d0cc12602e331ffae5729d26b4873c99ec587682ea88781 Section: misc -Size: 19246028 +Size: 23257118 Package: kubelet -Version: 1.8.7-00 -Installed-Size: 134878 +Version: 1.11.2-00 +Installed-Size: 159246 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.7-00_amd64_24344d1fccddb84f462d4458dc7ef60516b7b34c8f7e53050b8cebd904f1a8b0.deb +Filename: pool/kubelet_1.11.2-00_amd64_7537d39713573280e1cc245915fc7565ac49d041fbd0e0515daa1ea2ac659dbb.deb Priority: optional -SHA256: 24344d1fccddb84f462d4458dc7ef60516b7b34c8f7e53050b8cebd904f1a8b0 +SHA256: 7537d39713573280e1cc245915fc7565ac49d041fbd0e0515daa1ea2ac659dbb Section: misc -Size: 19240726 +Size: 23248666 Package: kubelet -Version: 1.8.8-00 -Installed-Size: 134877 +Version: 1.11.3-00 +Installed-Size: 159260 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.8-00_amd64_64d4ec64faa4ed93bf67900985ab8b87b0c96449c0a5b23dad8fe0138fef99de.deb +Filename: pool/kubelet_1.11.3-00_amd64_f992d76af73d547fcc1d8e3c1751ca05f801ac3682868786b7fdb528cba48ac0.deb Priority: optional -SHA256: 64d4ec64faa4ed93bf67900985ab8b87b0c96449c0a5b23dad8fe0138fef99de +SHA256: f992d76af73d547fcc1d8e3c1751ca05f801ac3682868786b7fdb528cba48ac0 Section: misc -Size: 19255030 +Size: 23267190 Package: kubelet -Version: 1.8.9-00 -Installed-Size: 134960 +Version: 1.11.4-00 +Installed-Size: 159296 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.9-00_amd64_9319e46c4964ea2dbb3da011b491953ad95b5b038861ce94d59db714c74dd036.deb +Filename: pool/kubelet_1.11.4-00_amd64_81d43d83a7a87f7742b2cc779e90a014f7e72a850766dc652292c02fb19b0062.deb Priority: optional -SHA256: 9319e46c4964ea2dbb3da011b491953ad95b5b038861ce94d59db714c74dd036 +SHA256: 81d43d83a7a87f7742b2cc779e90a014f7e72a850766dc652292c02fb19b0062 Section: misc -Size: 19268486 +Size: 23271522 Package: kubelet -Version: 1.8.10-00 -Installed-Size: 134966 +Version: 1.11.5-00 +Installed-Size: 159204 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.10-00_amd64_f02917067d77dbcb01ab6b881f68314d1e6b4ff178560e2d596d9c3226726c79.deb +Filename: pool/kubelet_1.11.5-00_amd64_d0a93e8fe821f989d1226b2feb6c62c9de6eb92cadc103da3f680ec7dbc5bd78.deb Priority: optional -SHA256: f02917067d77dbcb01ab6b881f68314d1e6b4ff178560e2d596d9c3226726c79 +SHA256: d0a93e8fe821f989d1226b2feb6c62c9de6eb92cadc103da3f680ec7dbc5bd78 Section: misc -Size: 19271308 +Size: 23289720 Package: kubelet -Version: 1.8.11-00 -Installed-Size: 134978 +Version: 1.11.6-00 +Installed-Size: 159240 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.11-00_amd64_e38ba6a15aaeda29fe2866b8b1365702d4b4dea577d646df50da2f8c5ee762cf.deb +Filename: pool/kubelet_1.11.6-00_amd64_da813320d69fa2909137da42dbe41adbfe0b0a1023c5f2f1d9edc514e29d15d4.deb Priority: optional -SHA256: e38ba6a15aaeda29fe2866b8b1365702d4b4dea577d646df50da2f8c5ee762cf +SHA256: da813320d69fa2909137da42dbe41adbfe0b0a1023c5f2f1d9edc514e29d15d4 Section: misc -Size: 19280424 +Size: 23236814 Package: kubelet -Version: 1.8.12-00 -Installed-Size: 134978 +Version: 1.11.7-00 +Installed-Size: 159258 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.12-00_amd64_7dc5d77b1b85ce6eef0bb128ab5b1790affc0542822facf4515ffcea051b7781.deb +Filename: pool/kubelet_1.11.7-00_amd64_73ee422e4d381d6226b93c6fdb5c5e6dcc875d9a91c6683a054b45ce71423e08.deb Priority: optional -SHA256: 7dc5d77b1b85ce6eef0bb128ab5b1790affc0542822facf4515ffcea051b7781 +SHA256: 73ee422e4d381d6226b93c6fdb5c5e6dcc875d9a91c6683a054b45ce71423e08 Section: misc -Size: 19273942 +Size: 23257848 Package: kubelet -Version: 1.8.13-00 -Installed-Size: 134978 +Version: 1.11.8-00 +Installed-Size: 159259 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.13-00_amd64_95894fc832a74a6be8461c516595b4e7ea12edf1e5f4ff20599d23fca50f491f.deb +Filename: pool/kubelet_1.11.8-00_amd64_4becff872b43a37a95b156282ac170d434deb0729e6d50de4334b2905ecd5420.deb Priority: optional -SHA256: 95894fc832a74a6be8461c516595b4e7ea12edf1e5f4ff20599d23fca50f491f +SHA256: 4becff872b43a37a95b156282ac170d434deb0729e6d50de4334b2905ecd5420 Section: misc -Size: 19283464 +Size: 23244568 Package: kubelet -Version: 1.8.14-00 -Installed-Size: 134991 +Version: 1.11.9-00 +Installed-Size: 159271 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.14-00_amd64_b5f96759cc1c51138474a66738a94482428d90a0b3e553505d7dafe251503993.deb +Filename: pool/kubelet_1.11.9-00_amd64_807679ed430d50e623e9c56345a6c6c2be1f9a9579d4c0cc8d80c440aa87954d.deb Priority: optional -SHA256: b5f96759cc1c51138474a66738a94482428d90a0b3e553505d7dafe251503993 +SHA256: 807679ed430d50e623e9c56345a6c6c2be1f9a9579d4c0cc8d80c440aa87954d Section: misc -Size: 19283054 +Size: 23238440 Package: kubelet -Version: 1.8.15-00 -Installed-Size: 135752 +Version: 1.11.10-00 +Installed-Size: 159619 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.5.1), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.8.15-00_amd64_dd4034732b629067c07cf989c642a7a612afd727fdb15b3a4fc9b3bb94c8122d.deb +Filename: pool/kubelet_1.11.10-00_amd64_b9d8e8599b9d606930e6d31159843cd60e1c89d978ef1d2123f02985b2922564.deb Priority: optional -SHA256: dd4034732b629067c07cf989c642a7a612afd727fdb15b3a4fc9b3bb94c8122d +SHA256: b9d8e8599b9d606930e6d31159843cd60e1c89d978ef1d2123f02985b2922564 Section: misc -Size: 19354960 +Size: 23403570 Package: kubelet -Version: 1.9.0-00 -Installed-Size: 144333 +Version: 1.12.0-00 +Installed-Size: 172624 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.0-00_amd64_100df9788226fe76ce828503cf24b8c4c6f9705f15504093844c9138e0b2a97f.deb +Filename: pool/kubelet_1.12.0-00_amd64_24f580dcc7cb8cb8439da40c2e1488f1851dac9dfaac0b64b94492538e59f948.deb Priority: optional -SHA256: 100df9788226fe76ce828503cf24b8c4c6f9705f15504093844c9138e0b2a97f +SHA256: 24f580dcc7cb8cb8439da40c2e1488f1851dac9dfaac0b64b94492538e59f948 Section: misc -Size: 20452588 +Size: 24660170 Package: kubelet -Version: 1.9.1-00 -Installed-Size: 144345 +Version: 1.12.1-00 +Installed-Size: 172640 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.1-00_amd64_e1111bdd0cb45976216b7498a0b1d68d15ddaacc462a067d831b0f20ae8c276b.deb +Filename: pool/kubelet_1.12.1-00_amd64_ae75f76207874c43f7e20e8184265e6a9fe38ef0c93e61115362280227bed23f.deb Priority: optional -SHA256: e1111bdd0cb45976216b7498a0b1d68d15ddaacc462a067d831b0f20ae8c276b +SHA256: ae75f76207874c43f7e20e8184265e6a9fe38ef0c93e61115362280227bed23f Section: misc -Size: 20472594 +Size: 24652756 Package: kubelet -Version: 1.9.2-00 -Installed-Size: 144362 +Version: 1.12.2-00 +Installed-Size: 172548 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.2-00_amd64_cdb2335fec48cd8cb3ad2bdd874fb29828ceb893d200ebee44657ae51f0851b4.deb +Filename: pool/kubelet_1.12.2-00_amd64_62015ea9af675de7f785081d518110d4df18580ddf9d382d2616e389a196f3da.deb Priority: optional -SHA256: cdb2335fec48cd8cb3ad2bdd874fb29828ceb893d200ebee44657ae51f0851b4 +SHA256: 62015ea9af675de7f785081d518110d4df18580ddf9d382d2616e389a196f3da Section: misc -Size: 20454180 +Size: 24612454 Package: kubelet -Version: 1.9.3-00 -Installed-Size: 144367 +Version: 1.12.3-00 +Installed-Size: 172560 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.3-00_amd64_50317ce119d81a3a69ba891c5c77b48b153b97a175598dc62ee811e081a063ee.deb +Filename: pool/kubelet_1.12.3-00_amd64_23cddff0a0db034778e7eba3405173fe4635d4b806ee77d943011c5e395e6eb7.deb Priority: optional -SHA256: 50317ce119d81a3a69ba891c5c77b48b153b97a175598dc62ee811e081a063ee +SHA256: 23cddff0a0db034778e7eba3405173fe4635d4b806ee77d943011c5e395e6eb7 Section: misc -Size: 20454776 +Size: 24633104 Package: kubelet -Version: 1.9.4-00 -Installed-Size: 143881 +Version: 1.12.4-00 +Installed-Size: 172583 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.4-00_amd64_c8c2af29e421adf188c94b7049e30ed1b6368dad49cfe5e8c865d43a16be6b76.deb +Filename: pool/kubelet_1.12.4-00_amd64_c8197c9e1105b81a08f31657645ed1a968fb54fd822cc0ca84b880da6db52636.deb Priority: optional -SHA256: c8c2af29e421adf188c94b7049e30ed1b6368dad49cfe5e8c865d43a16be6b76 +SHA256: c8197c9e1105b81a08f31657645ed1a968fb54fd822cc0ca84b880da6db52636 Section: misc -Size: 20395024 +Size: 24613404 Package: kubelet -Version: 1.9.5-00 -Installed-Size: 143885 +Version: 1.12.5-00 +Installed-Size: 172607 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.5-00_amd64_5400807b4c667bfeaa5074245fb1edb20cf4b1b7f3ac88cb23df437f8558cd13.deb +Filename: pool/kubelet_1.12.5-00_amd64_d0086a819074bd850859f213645401107a5573f84b9363060c65a9c337f70d91.deb Priority: optional -SHA256: 5400807b4c667bfeaa5074245fb1edb20cf4b1b7f3ac88cb23df437f8558cd13 +SHA256: d0086a819074bd850859f213645401107a5573f84b9363060c65a9c337f70d91 Section: misc -Size: 20397784 +Size: 24693196 Package: kubelet -Version: 1.9.6-00 -Installed-Size: 143885 +Version: 1.12.6-00 +Installed-Size: 172607 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.6-00_amd64_abc92a438e6bcade2e879b789fa0634474f448df7428157703206448805a948f.deb +Filename: pool/kubelet_1.12.6-00_amd64_23adc40edbd6b23c416fe4a615e6abf3fb6560b14bfb547b8b34df53224f8067.deb Priority: optional -SHA256: abc92a438e6bcade2e879b789fa0634474f448df7428157703206448805a948f +SHA256: 23adc40edbd6b23c416fe4a615e6abf3fb6560b14bfb547b8b34df53224f8067 Section: misc -Size: 20393264 +Size: 24633302 Package: kubelet -Version: 1.9.7-00 -Installed-Size: 143931 +Version: 1.12.7-00 +Installed-Size: 172600 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.7-00_amd64_6a510a9b3d8b54473e8237cda857be4487dbc8cbd2b6b84ad292f5a3c3ec01c5.deb +Filename: pool/kubelet_1.12.7-00_amd64_a6da4d228370714066a00ad5ae786cf4e0aff84a4438a4133a8782a16f428e4c.deb Priority: optional -SHA256: 6a510a9b3d8b54473e8237cda857be4487dbc8cbd2b6b84ad292f5a3c3ec01c5 +SHA256: a6da4d228370714066a00ad5ae786cf4e0aff84a4438a4133a8782a16f428e4c Section: misc -Size: 20400054 +Size: 24618578 Package: kubelet -Version: 1.9.8-00 -Installed-Size: 143924 +Version: 1.12.8-00 +Installed-Size: 172600 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.8-00_amd64_1119302b483e26aa69963e683002056df72acee69e06514e7773b3786b258053.deb +Filename: pool/kubelet_1.12.8-00_amd64_ce9409c85a8d50a2315163aa1d944936e61f716af557cb0e173aec423030ec14.deb Priority: optional -SHA256: 1119302b483e26aa69963e683002056df72acee69e06514e7773b3786b258053 +SHA256: ce9409c85a8d50a2315163aa1d944936e61f716af557cb0e173aec423030ec14 Section: misc -Size: 20397514 +Size: 24639888 Package: kubelet -Version: 1.9.9-00 -Installed-Size: 144714 +Version: 1.12.9-00 +Installed-Size: 172655 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.9-00_amd64_5218659dc22bcd6b18fe18ac110427ec8be12e175b290ca5ea5e60d8a3e531a6.deb +Filename: pool/kubelet_1.12.9-00_amd64_964d7de4aabdc09a5e807a2e3d16f17d66fbb9b5cacc64ca6c0255cd5699332c.deb Priority: optional -SHA256: 5218659dc22bcd6b18fe18ac110427ec8be12e175b290ca5ea5e60d8a3e531a6 +SHA256: 964d7de4aabdc09a5e807a2e3d16f17d66fbb9b5cacc64ca6c0255cd5699332c Section: misc -Size: 20504156 +Size: 24770078 Package: kubelet -Version: 1.9.10-00 -Installed-Size: 144717 +Version: 1.12.10-00 +Installed-Size: 172654 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.10-00_amd64_c10641e06a3c2f5ff2cc6c97686c29fb40f076b5c7f2d37754c84f4fb4fed2a9.deb +Filename: pool/kubelet_1.12.10-00_amd64_cfdef95a909ed3b1de9e53a4499c7bfeb2e47eed3b6e9d13c0adc8ad60d2076d.deb Priority: optional -SHA256: c10641e06a3c2f5ff2cc6c97686c29fb40f076b5c7f2d37754c84f4fb4fed2a9 +SHA256: cfdef95a909ed3b1de9e53a4499c7bfeb2e47eed3b6e9d13c0adc8ad60d2076d Section: misc -Size: 20489536 +Size: 24785806 Package: kubelet -Version: 1.9.11-00 -Installed-Size: 144727 +Version: 1.13.0-00 +Installed-Size: 110345 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.9.11-00_amd64_bcbc6de418e0e97c3210bab33716b8ecb0ad151f0948021437800aa3b4d9bbab.deb +Filename: pool/kubelet_1.13.0-00_amd64_f428332552df40f60aa9e1be21632406279dd3d7f64528c4f9058e8fe78eb119.deb Priority: optional -SHA256: bcbc6de418e0e97c3210bab33716b8ecb0ad151f0948021437800aa3b4d9bbab +SHA256: f428332552df40f60aa9e1be21632406279dd3d7f64528c4f9058e8fe78eb119 Section: misc -Size: 20499708 +Size: 19076722 Package: kubelet -Version: 1.10.0-00 -Installed-Size: 149213 +Version: 1.13.1-00 +Installed-Size: 110357 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.0-00_amd64_211eced3f0715db1dbbb9fa0973299a8f6b764ef43e25bd94fece3947b13091f.deb +Filename: pool/kubelet_1.13.1-00_amd64_158e81cf03ce9a1e2c9cc0dc609f864ba4959ceade5227d5b63708a2c2e3cedf.deb Priority: optional -SHA256: 211eced3f0715db1dbbb9fa0973299a8f6b764ef43e25bd94fece3947b13091f +SHA256: 158e81cf03ce9a1e2c9cc0dc609f864ba4959ceade5227d5b63708a2c2e3cedf Section: misc -Size: 21089520 +Size: 19039510 Package: kubelet -Version: 1.10.1-00 -Installed-Size: 149240 +Version: 1.13.2-00 +Installed-Size: 110409 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.1-00_amd64_7002d1aa12fea2f0c81efdc5ea577607e387d21177c6fa57e1f897037325b824.deb +Filename: pool/kubelet_1.13.2-00_amd64_82d092e6177b68cfdde60b9c58de4091ab466e61a4a0328d897275811bc62500.deb Priority: optional -SHA256: 7002d1aa12fea2f0c81efdc5ea577607e387d21177c6fa57e1f897037325b824 +SHA256: 82d092e6177b68cfdde60b9c58de4091ab466e61a4a0328d897275811bc62500 Section: misc -Size: 21111050 +Size: 19045092 Package: kubelet -Version: 1.10.2-00 -Installed-Size: 149257 +Version: 1.13.3-00 +Installed-Size: 110409 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.2-00_amd64_3ff69468521886de7b64ba9b4932bab7e6ef71f7344ace36ac0855df7bd2427a.deb +Filename: pool/kubelet_1.13.3-00_amd64_48d32f5aa84b897343500c9d2a4d283e46e230e7916902dffa2cdad34efd9b1b.deb Priority: optional -SHA256: 3ff69468521886de7b64ba9b4932bab7e6ef71f7344ace36ac0855df7bd2427a +SHA256: 48d32f5aa84b897343500c9d2a4d283e46e230e7916902dffa2cdad34efd9b1b Section: misc -Size: 21096048 +Size: 19043184 Package: kubelet -Version: 1.10.3-00 -Installed-Size: 149277 +Version: 1.13.4-00 +Installed-Size: 110421 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.3-00_amd64_cc71162f227c16487999c2f8190bf8714127410633b62383c8b733c6fce23fbb.deb +Filename: pool/kubelet_1.13.4-00_amd64_4fbf1a8278a7d36f9fc3a2435bf33450a450699eb09a542208824bacbc07f948.deb Priority: optional -SHA256: cc71162f227c16487999c2f8190bf8714127410633b62383c8b733c6fce23fbb +SHA256: 4fbf1a8278a7d36f9fc3a2435bf33450a450699eb09a542208824bacbc07f948 Section: misc -Size: 21103218 +Size: 19051312 Package: kubelet -Version: 1.10.4-00 -Installed-Size: 149312 +Version: 1.13.5-00 +Installed-Size: 110485 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.4-00_amd64_999ab6b2379ea1496d0e8f2099ceffb39a23043039484707639cade63bb07753.deb +Filename: pool/kubelet_1.13.5-00_amd64_d64da1273816d9f634d52e499cf36868a50743da5390f72ef9039927d43110e5.deb Priority: optional -SHA256: 999ab6b2379ea1496d0e8f2099ceffb39a23043039484707639cade63bb07753 +SHA256: d64da1273816d9f634d52e499cf36868a50743da5390f72ef9039927d43110e5 Section: misc -Size: 21105116 +Size: 19105744 Package: kubelet -Version: 1.10.5-00 -Installed-Size: 152161 +Version: 1.13.6-00 +Installed-Size: 110498 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.5-00_amd64_10aa030ab7d406ca639c57d16ab154b32e75f55925fb24065e33359c918722af.deb +Filename: pool/kubelet_1.13.6-00_amd64_ba374740ab4ab6ef647aeff12431777ed64cf7a9e19267dfe1b99d6d59dfe14e.deb Priority: optional -SHA256: 10aa030ab7d406ca639c57d16ab154b32e75f55925fb24065e33359c918722af +SHA256: ba374740ab4ab6ef647aeff12431777ed64cf7a9e19267dfe1b99d6d59dfe14e Section: misc -Size: 21366116 +Size: 19175568 Package: kubelet -Version: 1.10.6-00 -Installed-Size: 152160 +Version: 1.13.7-00 +Installed-Size: 110530 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.6-00_amd64_3430c8f965aa03419b96fb43ec3ec9ff3471a0413e0e107540343aee33e20a66.deb +Filename: pool/kubelet_1.13.7-00_amd64_a109c038d37d5e6cd08122ee7d09c15e117ceb82a90d909a2d1d5d81a9d48831.deb Priority: optional -SHA256: 3430c8f965aa03419b96fb43ec3ec9ff3471a0413e0e107540343aee33e20a66 +SHA256: a109c038d37d5e6cd08122ee7d09c15e117ceb82a90d909a2d1d5d81a9d48831 Section: misc -Size: 21376832 +Size: 19189246 Package: kubelet -Version: 1.10.7-00 -Installed-Size: 152173 +Version: 1.13.8-00 +Installed-Size: 110530 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.7-00_amd64_fd815d1c628fc90f5a0a3b3150d3314e6639a91c940fc212e13114a7086f1b10.deb +Filename: pool/kubelet_1.13.8-00_amd64_9f654da8188e1fa9783d5145973c9147aa461a27aeff3c3f2a5bba3a28882ef1.deb Priority: optional -SHA256: fd815d1c628fc90f5a0a3b3150d3314e6639a91c940fc212e13114a7086f1b10 +SHA256: 9f654da8188e1fa9783d5145973c9147aa461a27aeff3c3f2a5bba3a28882ef1 Section: misc -Size: 21375674 +Size: 19191036 Package: kubelet -Version: 1.10.8-00 -Installed-Size: 152174 +Version: 1.13.9-00 +Installed-Size: 110531 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.8-00_amd64_443f3fabf3e6a71f685c3d422c4a50ceddce46ab3ac2778c9ee5adf8879f8d6b.deb +Filename: pool/kubelet_1.13.9-00_amd64_d824078900acb099e53f80ff5f3f6f00a61392d5d907988080b60215fc529748.deb Priority: optional -SHA256: 443f3fabf3e6a71f685c3d422c4a50ceddce46ab3ac2778c9ee5adf8879f8d6b +SHA256: d824078900acb099e53f80ff5f3f6f00a61392d5d907988080b60215fc529748 Section: misc -Size: 21385958 +Size: 19187144 Package: kubelet -Version: 1.10.9-00 -Installed-Size: 152188 +Version: 1.13.10-00 +Installed-Size: 110591 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.9-00_amd64_dcd129388b2fe925712da9f69725a7ed91bf261bf401773cf1617a103f366a4c.deb +Filename: pool/kubelet_1.13.10-00_amd64_5c094e22dd6ccc126e54c01db3f31d0cf033402417494ecceeba9c809dbace7e.deb Priority: optional -SHA256: dcd129388b2fe925712da9f69725a7ed91bf261bf401773cf1617a103f366a4c +SHA256: 5c094e22dd6ccc126e54c01db3f31d0cf033402417494ecceeba9c809dbace7e Section: misc -Size: 21387506 +Size: 19208384 Package: kubelet -Version: 1.10.10-00 -Installed-Size: 152217 +Version: 1.13.11-00 +Installed-Size: 110591 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.10-00_amd64_f0b95158b6b5823d1b379a26f3ae5bb58cb5e07a3910de4581d9755abc2d62cb.deb +Filename: pool/kubelet_1.13.11-00_amd64_67ffa1960546d342d4959deabbe20f546e107297e785cb0a797a15eb605e41d6.deb Priority: optional -SHA256: f0b95158b6b5823d1b379a26f3ae5bb58cb5e07a3910de4581d9755abc2d62cb +SHA256: 67ffa1960546d342d4959deabbe20f546e107297e785cb0a797a15eb605e41d6 Section: misc -Size: 21377592 +Size: 19203000 Package: kubelet -Version: 1.10.11-00 -Installed-Size: 152211 +Version: 1.13.12-00 +Installed-Size: 110587 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.11-00_amd64_66d5acc214366f2a01a36038266b50d14d794d635a05d760d5bce25573b18c6a.deb +Filename: pool/kubelet_1.13.12-00_amd64_bbb3a620583678b250fa4b64a208a20cc5592bf7ff926ccbc9f8bd92e8515f94.deb Priority: optional -SHA256: 66d5acc214366f2a01a36038266b50d14d794d635a05d760d5bce25573b18c6a +SHA256: bbb3a620583678b250fa4b64a208a20cc5592bf7ff926ccbc9f8bd92e8515f94 Section: misc -Size: 21390086 +Size: 19206160 Package: kubelet -Version: 1.10.12-00 -Installed-Size: 152223 +Version: 1.14.0-00 +Installed-Size: 124885 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.12-00_amd64_c827b0e83b82824601b1894ce8528e71f3ed11467a742b1e097b5f5b1daf989c.deb +Filename: pool/kubelet_1.14.0-00_amd64_a0b145a6601fb6c03c8f401d65c5c94cc75bf17bc7a19a00fdff44a17b6e230f.deb Priority: optional -SHA256: c827b0e83b82824601b1894ce8528e71f3ed11467a742b1e097b5f5b1daf989c +SHA256: a0b145a6601fb6c03c8f401d65c5c94cc75bf17bc7a19a00fdff44a17b6e230f Section: misc -Size: 21394174 +Size: 21474264 Package: kubelet -Version: 1.10.13-00 -Installed-Size: 152216 +Version: 1.14.1-00 +Installed-Size: 124973 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.10.13-00_amd64_aa7069a9b903f263a16bf54059363e75b697b6ef9529c1042f8fe2e238eaf686.deb +Filename: pool/kubelet_1.14.1-00_amd64_60ce697defdd990aee5e4b40abc7274f71e3aef6d9cc4feab240c8dc5681ed05.deb Priority: optional -SHA256: aa7069a9b903f263a16bf54059363e75b697b6ef9529c1042f8fe2e238eaf686 +SHA256: 60ce697defdd990aee5e4b40abc7274f71e3aef6d9cc4feab240c8dc5681ed05 Section: misc -Size: 21375724 +Size: 21460924 Package: kubelet -Version: 1.11.0-00 -Installed-Size: 159217 +Version: 1.14.2-00 +Installed-Size: 124994 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.0-00_amd64_464fcc0e54df9ec18935f8b36f33cb048a3a6c638ec80205900bff48dc61b2a6.deb +Filename: pool/kubelet_1.14.2-00_amd64_6f10676ec9e3ae926be6eca3a2dbebe36b13b394a6d989932419e94ef3264694.deb Priority: optional -SHA256: 464fcc0e54df9ec18935f8b36f33cb048a3a6c638ec80205900bff48dc61b2a6 +SHA256: 6f10676ec9e3ae926be6eca3a2dbebe36b13b394a6d989932419e94ef3264694 Section: misc -Size: 23270046 +Size: 21568960 Package: kubelet -Version: 1.11.1-00 -Installed-Size: 159249 +Version: 1.14.3-00 +Installed-Size: 125018 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.1-00_amd64_28c71ce044870c518d0cc12602e331ffae5729d26b4873c99ec587682ea88781.deb +Filename: pool/kubelet_1.14.3-00_amd64_7367f139f822617b472475f8b7db6db0716a8513df9eeb9844a33e4b1c3d844f.deb Priority: optional -SHA256: 28c71ce044870c518d0cc12602e331ffae5729d26b4873c99ec587682ea88781 +SHA256: 7367f139f822617b472475f8b7db6db0716a8513df9eeb9844a33e4b1c3d844f Section: misc -Size: 23257118 +Size: 21579122 Package: kubelet -Version: 1.11.2-00 -Installed-Size: 159246 +Version: 1.14.4-00 +Installed-Size: 125038 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.2-00_amd64_7537d39713573280e1cc245915fc7565ac49d041fbd0e0515daa1ea2ac659dbb.deb +Filename: pool/kubelet_1.14.4-00_amd64_ad981158d637a54a56dbc567a5d7bed9de2237e778b97918b9e92bb7430715da.deb Priority: optional -SHA256: 7537d39713573280e1cc245915fc7565ac49d041fbd0e0515daa1ea2ac659dbb +SHA256: ad981158d637a54a56dbc567a5d7bed9de2237e778b97918b9e92bb7430715da Section: misc -Size: 23248666 +Size: 21567638 Package: kubelet -Version: 1.11.3-00 -Installed-Size: 159260 +Version: 1.14.5-00 +Installed-Size: 125039 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.3-00_amd64_f992d76af73d547fcc1d8e3c1751ca05f801ac3682868786b7fdb528cba48ac0.deb +Filename: pool/kubelet_1.14.5-00_amd64_f4125f9d0b91e6a32b2fdac30b3d1203a8f41e12678db3241889ab3dd01c4975.deb Priority: optional -SHA256: f992d76af73d547fcc1d8e3c1751ca05f801ac3682868786b7fdb528cba48ac0 +SHA256: f4125f9d0b91e6a32b2fdac30b3d1203a8f41e12678db3241889ab3dd01c4975 Section: misc -Size: 23267190 +Size: 21562672 Package: kubelet -Version: 1.11.4-00 -Installed-Size: 159296 +Version: 1.14.6-00 +Installed-Size: 125075 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.4-00_amd64_81d43d83a7a87f7742b2cc779e90a014f7e72a850766dc652292c02fb19b0062.deb +Filename: pool/kubelet_1.14.6-00_amd64_b31764889eae515e862eb7646b9ac1e7719f31736366cca75b370872ecfed0bd.deb Priority: optional -SHA256: 81d43d83a7a87f7742b2cc779e90a014f7e72a850766dc652292c02fb19b0062 +SHA256: b31764889eae515e862eb7646b9ac1e7719f31736366cca75b370872ecfed0bd Section: misc -Size: 23271522 +Size: 21587000 Package: kubelet -Version: 1.11.5-00 -Installed-Size: 159204 +Version: 1.14.7-00 +Installed-Size: 125115 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.5-00_amd64_d0a93e8fe821f989d1226b2feb6c62c9de6eb92cadc103da3f680ec7dbc5bd78.deb +Filename: pool/kubelet_1.14.7-00_amd64_9a85e300c2efbd29fd7bc78d314f7e03577c6068227ec1571f8cca4229e50ced.deb Priority: optional -SHA256: d0a93e8fe821f989d1226b2feb6c62c9de6eb92cadc103da3f680ec7dbc5bd78 +SHA256: 9a85e300c2efbd29fd7bc78d314f7e03577c6068227ec1571f8cca4229e50ced Section: misc -Size: 23289720 +Size: 21613864 Package: kubelet -Version: 1.11.6-00 -Installed-Size: 159240 +Version: 1.14.8-00 +Installed-Size: 125115 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.6-00_amd64_da813320d69fa2909137da42dbe41adbfe0b0a1023c5f2f1d9edc514e29d15d4.deb +Filename: pool/kubelet_1.14.8-00_amd64_fd90fe7eb59436d416103f7ea2bc905a73b8fbafead7074fd33f1e2ecec774c3.deb Priority: optional -SHA256: da813320d69fa2909137da42dbe41adbfe0b0a1023c5f2f1d9edc514e29d15d4 +SHA256: fd90fe7eb59436d416103f7ea2bc905a73b8fbafead7074fd33f1e2ecec774c3 Section: misc -Size: 23236814 +Size: 21592060 Package: kubelet -Version: 1.11.7-00 -Installed-Size: 159258 +Version: 1.14.9-00 +Installed-Size: 125115 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.7-00_amd64_73ee422e4d381d6226b93c6fdb5c5e6dcc875d9a91c6683a054b45ce71423e08.deb +Filename: pool/kubelet_1.14.9-00_amd64_0997197a365ce053050b65d0d0b88a76059b9ef3b5d0e1ef7d3c4a8d9a29e9e3.deb Priority: optional -SHA256: 73ee422e4d381d6226b93c6fdb5c5e6dcc875d9a91c6683a054b45ce71423e08 +SHA256: 0997197a365ce053050b65d0d0b88a76059b9ef3b5d0e1ef7d3c4a8d9a29e9e3 Section: misc -Size: 23257848 +Size: 21610248 Package: kubelet -Version: 1.11.8-00 -Installed-Size: 159259 +Version: 1.14.10-00 +Installed-Size: 125127 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.8-00_amd64_4becff872b43a37a95b156282ac170d434deb0729e6d50de4334b2905ecd5420.deb +Filename: pool/kubelet_1.14.10-00_amd64_c9612950af755428347c4596ad9949123af3c564aa6cdc724c5cc54df50fd822.deb Priority: optional -SHA256: 4becff872b43a37a95b156282ac170d434deb0729e6d50de4334b2905ecd5420 +SHA256: c9612950af755428347c4596ad9949123af3c564aa6cdc724c5cc54df50fd822 Section: misc -Size: 23244568 +Size: 21613664 Package: kubelet -Version: 1.11.9-00 -Installed-Size: 159271 +Version: 1.15.0-00 +Installed-Size: 116822 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.9-00_amd64_807679ed430d50e623e9c56345a6c6c2be1f9a9579d4c0cc8d80c440aa87954d.deb +Filename: pool/kubelet_1.15.0-00_amd64_2e2c6e716b5effa1358beba20129baa5651d6ab085a094346645f416c038389b.deb Priority: optional -SHA256: 807679ed430d50e623e9c56345a6c6c2be1f9a9579d4c0cc8d80c440aa87954d +SHA256: 2e2c6e716b5effa1358beba20129baa5651d6ab085a094346645f416c038389b Section: misc -Size: 23238440 +Size: 20239146 Package: kubelet -Version: 1.11.10-00 -Installed-Size: 159619 +Version: 1.15.1-00 +Installed-Size: 116830 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.11.10-00_amd64_b9d8e8599b9d606930e6d31159843cd60e1c89d978ef1d2123f02985b2922564.deb +Filename: pool/kubelet_1.15.1-00_amd64_ac23776caec693946c79c349d76bade5bd10e822d0b6e33581d8fbdb7420d3f3.deb Priority: optional -SHA256: b9d8e8599b9d606930e6d31159843cd60e1c89d978ef1d2123f02985b2922564 +SHA256: ac23776caec693946c79c349d76bade5bd10e822d0b6e33581d8fbdb7420d3f3 Section: misc -Size: 23403570 +Size: 20231482 Package: kubelet -Version: 1.12.0-00 -Installed-Size: 172624 +Version: 1.15.2-00 +Installed-Size: 116827 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.0-00_amd64_24f580dcc7cb8cb8439da40c2e1488f1851dac9dfaac0b64b94492538e59f948.deb +Filename: pool/kubelet_1.15.2-00_amd64_7d5b5aeb52177ee84169cdf4a1d624ce27e79a1d3cee9f500dc360ffe3f5adb6.deb Priority: optional -SHA256: 24f580dcc7cb8cb8439da40c2e1488f1851dac9dfaac0b64b94492538e59f948 +SHA256: 7d5b5aeb52177ee84169cdf4a1d624ce27e79a1d3cee9f500dc360ffe3f5adb6 Section: misc -Size: 24660170 +Size: 20239760 Package: kubelet -Version: 1.12.1-00 -Installed-Size: 172640 +Version: 1.15.3-00 +Installed-Size: 116855 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.1-00_amd64_ae75f76207874c43f7e20e8184265e6a9fe38ef0c93e61115362280227bed23f.deb +Filename: pool/kubelet_1.15.3-00_amd64_04030c9f58fdb521f5587b47d15a7382419f2600195450079380cf34b02abc75.deb Priority: optional -SHA256: ae75f76207874c43f7e20e8184265e6a9fe38ef0c93e61115362280227bed23f +SHA256: 04030c9f58fdb521f5587b47d15a7382419f2600195450079380cf34b02abc75 Section: misc -Size: 24652756 +Size: 20239224 Package: kubelet -Version: 1.12.2-00 -Installed-Size: 172548 +Version: 1.15.4-00 +Installed-Size: 116899 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.2-00_amd64_62015ea9af675de7f785081d518110d4df18580ddf9d382d2616e389a196f3da.deb +Filename: pool/kubelet_1.15.4-00_amd64_be85fb9796d3b433a4eef58c95d953836c39917578f6cd4f3328133cf865fc04.deb Priority: optional -SHA256: 62015ea9af675de7f785081d518110d4df18580ddf9d382d2616e389a196f3da +SHA256: be85fb9796d3b433a4eef58c95d953836c39917578f6cd4f3328133cf865fc04 Section: misc -Size: 24612454 +Size: 20243092 Package: kubelet -Version: 1.12.3-00 -Installed-Size: 172560 +Version: 1.15.5-00 +Installed-Size: 116895 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.3-00_amd64_23cddff0a0db034778e7eba3405173fe4635d4b806ee77d943011c5e395e6eb7.deb +Filename: pool/kubelet_1.15.5-00_amd64_feba4d4831a02a994a71708885f0fd043b983ae2787a6d2eb1f1ae80b0f199f0.deb Priority: optional -SHA256: 23cddff0a0db034778e7eba3405173fe4635d4b806ee77d943011c5e395e6eb7 +SHA256: feba4d4831a02a994a71708885f0fd043b983ae2787a6d2eb1f1ae80b0f199f0 Section: misc -Size: 24633104 +Size: 20268296 Package: kubelet -Version: 1.12.4-00 -Installed-Size: 172583 +Version: 1.15.6-00 +Installed-Size: 116903 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.4-00_amd64_c8197c9e1105b81a08f31657645ed1a968fb54fd822cc0ca84b880da6db52636.deb +Filename: pool/kubelet_1.15.6-00_amd64_ef88a8ae8a9474be1aee0b508ae51ab990503086061f1a9c83677b67466f15bb.deb Priority: optional -SHA256: c8197c9e1105b81a08f31657645ed1a968fb54fd822cc0ca84b880da6db52636 +SHA256: ef88a8ae8a9474be1aee0b508ae51ab990503086061f1a9c83677b67466f15bb Section: misc -Size: 24613404 +Size: 20257112 Package: kubelet -Version: 1.12.5-00 -Installed-Size: 172607 +Version: 1.15.7-00 +Installed-Size: 116911 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.5-00_amd64_d0086a819074bd850859f213645401107a5573f84b9363060c65a9c337f70d91.deb +Filename: pool/kubelet_1.15.7-00_amd64_0d2f457797d92038f9ba7f0c73aa550759d865185219a9ec84fcee1fac4664ba.deb Priority: optional -SHA256: d0086a819074bd850859f213645401107a5573f84b9363060c65a9c337f70d91 +SHA256: 0d2f457797d92038f9ba7f0c73aa550759d865185219a9ec84fcee1fac4664ba Section: misc -Size: 24693196 +Size: 20264192 Package: kubelet -Version: 1.12.6-00 -Installed-Size: 172607 +Version: 1.15.8-00 +Installed-Size: 116919 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.6-00_amd64_23adc40edbd6b23c416fe4a615e6abf3fb6560b14bfb547b8b34df53224f8067.deb +Filename: pool/kubelet_1.15.8-00_amd64_1bce461a8ece0f4f3ca3d45f7b2a837d679768d2ca34a15239417deea5d8ede0.deb Priority: optional -SHA256: 23adc40edbd6b23c416fe4a615e6abf3fb6560b14bfb547b8b34df53224f8067 +SHA256: 1bce461a8ece0f4f3ca3d45f7b2a837d679768d2ca34a15239417deea5d8ede0 Section: misc -Size: 24633302 +Size: 20277792 Package: kubelet -Version: 1.12.7-00 -Installed-Size: 172600 +Version: 1.15.9-00 +Installed-Size: 116915 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.7-00_amd64_a6da4d228370714066a00ad5ae786cf4e0aff84a4438a4133a8782a16f428e4c.deb +Filename: pool/kubelet_1.15.9-00_amd64_6a8a4a1643d5e2c84b2c99c478eb94c008bc3ac3ee7a1bdf9d4dd0b911acf04e.deb Priority: optional -SHA256: a6da4d228370714066a00ad5ae786cf4e0aff84a4438a4133a8782a16f428e4c +SHA256: 6a8a4a1643d5e2c84b2c99c478eb94c008bc3ac3ee7a1bdf9d4dd0b911acf04e Section: misc -Size: 24618578 +Size: 20266584 Package: kubelet -Version: 1.12.8-00 -Installed-Size: 172600 +Version: 1.15.10-00 +Installed-Size: 116939 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.8-00_amd64_ce9409c85a8d50a2315163aa1d944936e61f716af557cb0e173aec423030ec14.deb +Filename: pool/kubelet_1.15.10-00_amd64_4c21beb7ae2571ec4f3264dee23ce6c4c4a0cf43bcb266a379feadafc106cce0.deb Priority: optional -SHA256: ce9409c85a8d50a2315163aa1d944936e61f716af557cb0e173aec423030ec14 +SHA256: 4c21beb7ae2571ec4f3264dee23ce6c4c4a0cf43bcb266a379feadafc106cce0 Section: misc -Size: 24639888 +Size: 20264556 Package: kubelet -Version: 1.12.9-00 -Installed-Size: 172655 +Version: 1.15.11-00 +Installed-Size: 116963 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.9-00_amd64_964d7de4aabdc09a5e807a2e3d16f17d66fbb9b5cacc64ca6c0255cd5699332c.deb +Filename: pool/kubelet_1.15.11-00_amd64_e2617978e2b7279323b78c9944e270db89d06f61fcfe39df9b066705c4a19c6e.deb Priority: optional -SHA256: 964d7de4aabdc09a5e807a2e3d16f17d66fbb9b5cacc64ca6c0255cd5699332c +SHA256: e2617978e2b7279323b78c9944e270db89d06f61fcfe39df9b066705c4a19c6e Section: misc -Size: 24770078 +Size: 20272676 Package: kubelet -Version: 1.12.10-00 -Installed-Size: 172654 +Version: 1.15.12-00 +Installed-Size: 116979 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.12.10-00_amd64_cfdef95a909ed3b1de9e53a4499c7bfeb2e47eed3b6e9d13c0adc8ad60d2076d.deb +Filename: pool/kubelet_1.15.12-00_amd64_059c12052953b5d13971735686abafc8e5fee6ca01c37a2db4b615df0bbc8425.deb Priority: optional -SHA256: cfdef95a909ed3b1de9e53a4499c7bfeb2e47eed3b6e9d13c0adc8ad60d2076d +SHA256: 059c12052953b5d13971735686abafc8e5fee6ca01c37a2db4b615df0bbc8425 Section: misc -Size: 24785806 +Size: 20277612 Package: kubelet -Version: 1.13.0-00 -Installed-Size: 110345 +Version: 1.16.0-00 +Installed-Size: 120249 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.0-00_amd64_f428332552df40f60aa9e1be21632406279dd3d7f64528c4f9058e8fe78eb119.deb +Filename: pool/kubelet_1.16.0-00_amd64_e919939f5dad4bc7b0047fe2cf2870ab1946e87f948ab7f75bc1d63305436664.deb Priority: optional -SHA256: f428332552df40f60aa9e1be21632406279dd3d7f64528c4f9058e8fe78eb119 +SHA256: e919939f5dad4bc7b0047fe2cf2870ab1946e87f948ab7f75bc1d63305436664 Section: misc -Size: 19076722 +Size: 20694552 Package: kubelet -Version: 1.13.1-00 -Installed-Size: 110357 +Version: 1.16.1-00 +Installed-Size: 120257 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.1-00_amd64_158e81cf03ce9a1e2c9cc0dc609f864ba4959ceade5227d5b63708a2c2e3cedf.deb +Filename: pool/kubelet_1.16.1-00_amd64_ae1d16ae8e2b73a3224a41c0730be2d812870b7cb7307a8f02d13038d572d05d.deb Priority: optional -SHA256: 158e81cf03ce9a1e2c9cc0dc609f864ba4959ceade5227d5b63708a2c2e3cedf +SHA256: ae1d16ae8e2b73a3224a41c0730be2d812870b7cb7307a8f02d13038d572d05d Section: misc -Size: 19039510 +Size: 20696840 Package: kubelet -Version: 1.13.2-00 -Installed-Size: 110409 +Version: 1.16.2-00 +Installed-Size: 120257 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.2-00_amd64_82d092e6177b68cfdde60b9c58de4091ab466e61a4a0328d897275811bc62500.deb +Filename: pool/kubelet_1.16.2-00_amd64_f36a759a47ab98ec48e32503c4934c9cb83c323108b2c0a7aaf4c964cf62e5c1.deb Priority: optional -SHA256: 82d092e6177b68cfdde60b9c58de4091ab466e61a4a0328d897275811bc62500 +SHA256: f36a759a47ab98ec48e32503c4934c9cb83c323108b2c0a7aaf4c964cf62e5c1 Section: misc -Size: 19045092 +Size: 20709916 Package: kubelet -Version: 1.13.3-00 -Installed-Size: 110409 +Version: 1.16.3-00 +Installed-Size: 120261 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.3-00_amd64_48d32f5aa84b897343500c9d2a4d283e46e230e7916902dffa2cdad34efd9b1b.deb +Filename: pool/kubelet_1.16.3-00_amd64_77c3d05510bc1f753834c30de6a1a7fc032ecfb906527bc270663428b371c477.deb Priority: optional -SHA256: 48d32f5aa84b897343500c9d2a4d283e46e230e7916902dffa2cdad34efd9b1b +SHA256: 77c3d05510bc1f753834c30de6a1a7fc032ecfb906527bc270663428b371c477 Section: misc -Size: 19043184 +Size: 20709840 Package: kubelet -Version: 1.13.4-00 -Installed-Size: 110421 +Version: 1.16.4-00 +Installed-Size: 120277 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.6.0), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.4-00_amd64_4fbf1a8278a7d36f9fc3a2435bf33450a450699eb09a542208824bacbc07f948.deb +Filename: pool/kubelet_1.16.4-00_amd64_a2fc1b783de61bd4e8baaa8b8549f3b9c7c22a6d2922dbd24f693c5d241d7f0b.deb Priority: optional -SHA256: 4fbf1a8278a7d36f9fc3a2435bf33450a450699eb09a542208824bacbc07f948 +SHA256: a2fc1b783de61bd4e8baaa8b8549f3b9c7c22a6d2922dbd24f693c5d241d7f0b Section: misc -Size: 19051312 +Size: 20729692 Package: kubelet -Version: 1.13.5-00 -Installed-Size: 110485 +Version: 1.16.5-00 +Installed-Size: 108532 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.5-00_amd64_d64da1273816d9f634d52e499cf36868a50743da5390f72ef9039927d43110e5.deb +Filename: pool/kubelet_1.16.5-00_amd64_bccca7c4203a55af958e073d3868c3df210052976e156aa38c5b5c20eb529bfd.deb Priority: optional -SHA256: d64da1273816d9f634d52e499cf36868a50743da5390f72ef9039927d43110e5 +SHA256: bccca7c4203a55af958e073d3868c3df210052976e156aa38c5b5c20eb529bfd Section: misc -Size: 19105744 +Size: 19104088 Package: kubelet -Version: 1.13.6-00 -Installed-Size: 110498 +Version: 1.16.6-00 +Installed-Size: 108528 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.6-00_amd64_ba374740ab4ab6ef647aeff12431777ed64cf7a9e19267dfe1b99d6d59dfe14e.deb +Filename: pool/kubelet_1.16.6-00_amd64_37e04fde1b70d0da78ce5ee8b4ca7ed9e40350a9bd90930466a2382c13bdc587.deb Priority: optional -SHA256: ba374740ab4ab6ef647aeff12431777ed64cf7a9e19267dfe1b99d6d59dfe14e +SHA256: 37e04fde1b70d0da78ce5ee8b4ca7ed9e40350a9bd90930466a2382c13bdc587 Section: misc -Size: 19175568 +Size: 19091540 Package: kubelet -Version: 1.13.7-00 -Installed-Size: 110530 +Version: 1.16.7-00 +Installed-Size: 108544 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.7-00_amd64_a109c038d37d5e6cd08122ee7d09c15e117ceb82a90d909a2d1d5d81a9d48831.deb +Filename: pool/kubelet_1.16.7-00_amd64_64a9bcd959663f062ee5b222414637b6f9a2f3fc1792424daa67049216b0ba9f.deb Priority: optional -SHA256: a109c038d37d5e6cd08122ee7d09c15e117ceb82a90d909a2d1d5d81a9d48831 +SHA256: 64a9bcd959663f062ee5b222414637b6f9a2f3fc1792424daa67049216b0ba9f Section: misc -Size: 19189246 +Size: 19096492 Package: kubelet -Version: 1.13.8-00 -Installed-Size: 110530 +Version: 1.16.8-00 +Installed-Size: 108592 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.8-00_amd64_9f654da8188e1fa9783d5145973c9147aa461a27aeff3c3f2a5bba3a28882ef1.deb +Filename: pool/kubelet_1.16.8-00_amd64_a19bad53d7daf301a7f1ca1b5f6cadd022a3e6080e69c90f35732bfd516ce00f.deb Priority: optional -SHA256: 9f654da8188e1fa9783d5145973c9147aa461a27aeff3c3f2a5bba3a28882ef1 +SHA256: a19bad53d7daf301a7f1ca1b5f6cadd022a3e6080e69c90f35732bfd516ce00f Section: misc -Size: 19191036 +Size: 19114548 Package: kubelet -Version: 1.13.9-00 -Installed-Size: 110531 +Version: 1.16.9-00 +Installed-Size: 108604 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.9-00_amd64_d824078900acb099e53f80ff5f3f6f00a61392d5d907988080b60215fc529748.deb +Filename: pool/kubelet_1.16.9-00_amd64_b6e78373d892c1ff064fb6463aee53eb040f9b28866286f4f054ebb51723da3b.deb Priority: optional -SHA256: d824078900acb099e53f80ff5f3f6f00a61392d5d907988080b60215fc529748 +SHA256: b6e78373d892c1ff064fb6463aee53eb040f9b28866286f4f054ebb51723da3b Section: misc -Size: 19187144 +Size: 19112804 Package: kubelet -Version: 1.13.10-00 -Installed-Size: 110591 +Version: 1.16.10-00 +Installed-Size: 108620 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.10-00_amd64_5c094e22dd6ccc126e54c01db3f31d0cf033402417494ecceeba9c809dbace7e.deb +Filename: pool/kubelet_1.16.10-00_amd64_2a52e6feba725702c7e0d201e89630c6784fb071d366e2f210d1f78892ccb3f4.deb Priority: optional -SHA256: 5c094e22dd6ccc126e54c01db3f31d0cf033402417494ecceeba9c809dbace7e +SHA256: 2a52e6feba725702c7e0d201e89630c6784fb071d366e2f210d1f78892ccb3f4 Section: misc -Size: 19208384 +Size: 19094096 Package: kubelet -Version: 1.13.11-00 -Installed-Size: 110591 +Version: 1.16.11-00 +Installed-Size: 179093 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Replaces: kubernetes-cni +Provides: kubernetes-cni +Depends: iptables (>= 1.4.21), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Conflicts: kubernetes-cni Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.11-00_amd64_67ffa1960546d342d4959deabbe20f546e107297e785cb0a797a15eb605e41d6.deb +Filename: pool/kubelet_1.16.11-00_amd64_3ed94d8b7d9a399e272c8eb50d6bba1052f86ad5f3ea76f91760e930e4498027.deb Priority: optional -SHA256: 67ffa1960546d342d4959deabbe20f546e107297e785cb0a797a15eb605e41d6 +SHA256: 3ed94d8b7d9a399e272c8eb50d6bba1052f86ad5f3ea76f91760e930e4498027 Section: misc -Size: 19203000 +Size: 44060824 Package: kubelet -Version: 1.13.12-00 -Installed-Size: 110587 +Version: 1.16.11-01 +Installed-Size: 108620 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.13.12-00_amd64_bbb3a620583678b250fa4b64a208a20cc5592bf7ff926ccbc9f8bd92e8515f94.deb +Filename: pool/kubelet_1.16.11-01_amd64_51367f7719a9d7d39cab07678829bab4802c1788e470e74baebe8ce1f23bf4eb.deb Priority: optional -SHA256: bbb3a620583678b250fa4b64a208a20cc5592bf7ff926ccbc9f8bd92e8515f94 +SHA256: 51367f7719a9d7d39cab07678829bab4802c1788e470e74baebe8ce1f23bf4eb Section: misc -Size: 19206160 +Size: 19113412 Package: kubelet -Version: 1.14.0-00 -Installed-Size: 124885 +Version: 1.16.12-00 +Installed-Size: 108616 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.0-00_amd64_a0b145a6601fb6c03c8f401d65c5c94cc75bf17bc7a19a00fdff44a17b6e230f.deb +Filename: pool/kubelet_1.16.12-00_amd64_65fc6e261a0858cbd9878a936b6bb75ef3f229bbb49455c1463e9821904588b7.deb Priority: optional -SHA256: a0b145a6601fb6c03c8f401d65c5c94cc75bf17bc7a19a00fdff44a17b6e230f +SHA256: 65fc6e261a0858cbd9878a936b6bb75ef3f229bbb49455c1463e9821904588b7 Section: misc -Size: 21474264 +Size: 19112848 Package: kubelet -Version: 1.14.1-00 -Installed-Size: 124973 +Version: 1.16.13-00 +Installed-Size: 108624 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.1-00_amd64_60ce697defdd990aee5e4b40abc7274f71e3aef6d9cc4feab240c8dc5681ed05.deb +Filename: pool/kubelet_1.16.13-00_amd64_3f0b8d4650c996b285946dcf9f302282c52a6819960eeb0ee56cad1f217e8c16.deb Priority: optional -SHA256: 60ce697defdd990aee5e4b40abc7274f71e3aef6d9cc4feab240c8dc5681ed05 +SHA256: 3f0b8d4650c996b285946dcf9f302282c52a6819960eeb0ee56cad1f217e8c16 Section: misc -Size: 21460924 +Size: 19121204 Package: kubelet -Version: 1.14.2-00 -Installed-Size: 124994 +Version: 1.16.14-00 +Installed-Size: 108641 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.2-00_amd64_6f10676ec9e3ae926be6eca3a2dbebe36b13b394a6d989932419e94ef3264694.deb +Filename: pool/kubelet_1.16.14-00_amd64_a26311f529fca86bfd2f6fea4b761cdfa5111574819cc5f349308cd86d26fce9.deb Priority: optional -SHA256: 6f10676ec9e3ae926be6eca3a2dbebe36b13b394a6d989932419e94ef3264694 +SHA256: a26311f529fca86bfd2f6fea4b761cdfa5111574819cc5f349308cd86d26fce9 Section: misc -Size: 21568960 +Size: 19120636 Package: kubelet -Version: 1.14.3-00 -Installed-Size: 125018 +Version: 1.16.15-00 +Installed-Size: 108641 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.3-00_amd64_7367f139f822617b472475f8b7db6db0716a8513df9eeb9844a33e4b1c3d844f.deb +Filename: pool/kubelet_1.16.15-00_amd64_bc59525e7c56357f83d92c80ece1047fa27b8370c313cb6ba2c356bccc0e4293.deb Priority: optional -SHA256: 7367f139f822617b472475f8b7db6db0716a8513df9eeb9844a33e4b1c3d844f +SHA256: bc59525e7c56357f83d92c80ece1047fa27b8370c313cb6ba2c356bccc0e4293 Section: misc -Size: 21579122 +Size: 19128436 Package: kubelet -Version: 1.14.4-00 -Installed-Size: 125038 +Version: 1.17.0-00 +Installed-Size: 108958 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.4-00_amd64_ad981158d637a54a56dbc567a5d7bed9de2237e778b97918b9e92bb7430715da.deb +Filename: pool/kubelet_1.17.0-00_amd64_ee141d9d5fe9c4db5c88022d837c9a587d52223c9dac5171c60b596a8381365c.deb Priority: optional -SHA256: ad981158d637a54a56dbc567a5d7bed9de2237e778b97918b9e92bb7430715da +SHA256: ee141d9d5fe9c4db5c88022d837c9a587d52223c9dac5171c60b596a8381365c Section: misc -Size: 21567638 +Size: 19182372 Package: kubelet -Version: 1.14.5-00 -Installed-Size: 125039 +Version: 1.17.1-00 +Installed-Size: 108971 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.5-00_amd64_f4125f9d0b91e6a32b2fdac30b3d1203a8f41e12678db3241889ab3dd01c4975.deb +Filename: pool/kubelet_1.17.1-00_amd64_c9133d2dedcc6364fe525cd8ea15a3024b7bf866f5465121d561032006e20be6.deb Priority: optional -SHA256: f4125f9d0b91e6a32b2fdac30b3d1203a8f41e12678db3241889ab3dd01c4975 +SHA256: c9133d2dedcc6364fe525cd8ea15a3024b7bf866f5465121d561032006e20be6 Section: misc -Size: 21562672 +Size: 19211964 Package: kubelet -Version: 1.14.6-00 -Installed-Size: 125075 +Version: 1.17.2-00 +Installed-Size: 108967 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.6-00_amd64_b31764889eae515e862eb7646b9ac1e7719f31736366cca75b370872ecfed0bd.deb +Filename: pool/kubelet_1.17.2-00_amd64_f22c86b79e7e98d18aaca1690d96b977bca11e9541170716bab0cb664f9e583c.deb Priority: optional -SHA256: b31764889eae515e862eb7646b9ac1e7719f31736366cca75b370872ecfed0bd +SHA256: f22c86b79e7e98d18aaca1690d96b977bca11e9541170716bab0cb664f9e583c Section: misc -Size: 21587000 +Size: 19204852 Package: kubelet -Version: 1.14.7-00 -Installed-Size: 125115 +Version: 1.17.3-00 +Installed-Size: 108983 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.7-00_amd64_9a85e300c2efbd29fd7bc78d314f7e03577c6068227ec1571f8cca4229e50ced.deb +Filename: pool/kubelet_1.17.3-00_amd64_f0b930ce4160af585fb10dc8e4f76747a60f04b6343c45405afbe79d380ae41f.deb Priority: optional -SHA256: 9a85e300c2efbd29fd7bc78d314f7e03577c6068227ec1571f8cca4229e50ced +SHA256: f0b930ce4160af585fb10dc8e4f76747a60f04b6343c45405afbe79d380ae41f Section: misc -Size: 21613864 +Size: 19203564 Package: kubelet -Version: 1.14.8-00 -Installed-Size: 125115 +Version: 1.17.4-00 +Installed-Size: 109027 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.8-00_amd64_fd90fe7eb59436d416103f7ea2bc905a73b8fbafead7074fd33f1e2ecec774c3.deb +Filename: pool/kubelet_1.17.4-00_amd64_6fcbfedf0fc827455f6f762dff02ac0ab302722996d6622b426a4dea0304ad35.deb Priority: optional -SHA256: fd90fe7eb59436d416103f7ea2bc905a73b8fbafead7074fd33f1e2ecec774c3 +SHA256: 6fcbfedf0fc827455f6f762dff02ac0ab302722996d6622b426a4dea0304ad35 Section: misc -Size: 21592060 +Size: 19217052 Package: kubelet -Version: 1.14.9-00 -Installed-Size: 125115 +Version: 1.17.5-00 +Installed-Size: 109047 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.9-00_amd64_0997197a365ce053050b65d0d0b88a76059b9ef3b5d0e1ef7d3c4a8d9a29e9e3.deb +Filename: pool/kubelet_1.17.5-00_amd64_87ec51713fa6dc06936f50b1b4c9877ccb80635002dd0141a62ece07246e9530.deb Priority: optional -SHA256: 0997197a365ce053050b65d0d0b88a76059b9ef3b5d0e1ef7d3c4a8d9a29e9e3 +SHA256: 87ec51713fa6dc06936f50b1b4c9877ccb80635002dd0141a62ece07246e9530 Section: misc -Size: 21610248 +Size: 19216404 Package: kubelet -Version: 1.14.10-00 -Installed-Size: 125127 +Version: 1.17.6-00 +Installed-Size: 109063 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.14.10-00_amd64_c9612950af755428347c4596ad9949123af3c564aa6cdc724c5cc54df50fd822.deb +Filename: pool/kubelet_1.17.6-00_amd64_7e9eeedd1bc3f0719ffa0d2e0cb26ab7d679641651726b86c3a7a73ceec35d25.deb Priority: optional -SHA256: c9612950af755428347c4596ad9949123af3c564aa6cdc724c5cc54df50fd822 +SHA256: 7e9eeedd1bc3f0719ffa0d2e0cb26ab7d679641651726b86c3a7a73ceec35d25 Section: misc -Size: 21613664 +Size: 19220324 Package: kubelet -Version: 1.15.0-00 -Installed-Size: 116822 +Version: 1.17.7-00 +Installed-Size: 179540 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Replaces: kubernetes-cni +Provides: kubernetes-cni +Depends: iptables (>= 1.4.21), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Conflicts: kubernetes-cni Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.0-00_amd64_2e2c6e716b5effa1358beba20129baa5651d6ab085a094346645f416c038389b.deb +Filename: pool/kubelet_1.17.7-00_amd64_0166b6efacad1d1108bf2c67aa6fbd6733a3eacd18a3945578e4379d90cbdeec.deb Priority: optional -SHA256: 2e2c6e716b5effa1358beba20129baa5651d6ab085a094346645f416c038389b +SHA256: 0166b6efacad1d1108bf2c67aa6fbd6733a3eacd18a3945578e4379d90cbdeec Section: misc -Size: 20239146 +Size: 44176952 Package: kubelet -Version: 1.15.1-00 -Installed-Size: 116830 +Version: 1.17.7-01 +Installed-Size: 109067 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.1-00_amd64_ac23776caec693946c79c349d76bade5bd10e822d0b6e33581d8fbdb7420d3f3.deb +Filename: pool/kubelet_1.17.7-01_amd64_ad674c16c6aab69995b8c8605c1fea76f20e3b8101041ec83badd1fc7bcd978d.deb Priority: optional -SHA256: ac23776caec693946c79c349d76bade5bd10e822d0b6e33581d8fbdb7420d3f3 +SHA256: ad674c16c6aab69995b8c8605c1fea76f20e3b8101041ec83badd1fc7bcd978d Section: misc -Size: 20231482 +Size: 19222520 Package: kubelet -Version: 1.15.2-00 -Installed-Size: 116827 +Version: 1.17.8-00 +Installed-Size: 109063 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.2-00_amd64_7d5b5aeb52177ee84169cdf4a1d624ce27e79a1d3cee9f500dc360ffe3f5adb6.deb +Filename: pool/kubelet_1.17.8-00_amd64_35aaec7a6c1ffb8dce774e5543b2cfb8a8d4a964eec01c7f3e84aa53f3a9bf9b.deb Priority: optional -SHA256: 7d5b5aeb52177ee84169cdf4a1d624ce27e79a1d3cee9f500dc360ffe3f5adb6 +SHA256: 35aaec7a6c1ffb8dce774e5543b2cfb8a8d4a964eec01c7f3e84aa53f3a9bf9b Section: misc -Size: 20239760 +Size: 19219016 Package: kubelet -Version: 1.15.3-00 -Installed-Size: 116855 +Version: 1.17.9-00 +Installed-Size: 109075 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.3-00_amd64_04030c9f58fdb521f5587b47d15a7382419f2600195450079380cf34b02abc75.deb +Filename: pool/kubelet_1.17.9-00_amd64_2c2710b1c2c3d32e472ae1810d17b973255227ccacf8e900adb5dbfe9894385a.deb Priority: optional -SHA256: 04030c9f58fdb521f5587b47d15a7382419f2600195450079380cf34b02abc75 +SHA256: 2c2710b1c2c3d32e472ae1810d17b973255227ccacf8e900adb5dbfe9894385a Section: misc -Size: 20239224 +Size: 19222140 Package: kubelet -Version: 1.15.4-00 -Installed-Size: 116899 +Version: 1.17.11-00 +Installed-Size: 109087 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.4-00_amd64_be85fb9796d3b433a4eef58c95d953836c39917578f6cd4f3328133cf865fc04.deb +Filename: pool/kubelet_1.17.11-00_amd64_ac4eacd08bd4210fc076606c761dce6e1ba75833180808c5e49aaeb478bba2ab.deb Priority: optional -SHA256: be85fb9796d3b433a4eef58c95d953836c39917578f6cd4f3328133cf865fc04 +SHA256: ac4eacd08bd4210fc076606c761dce6e1ba75833180808c5e49aaeb478bba2ab Section: misc -Size: 20243092 +Size: 19224980 Package: kubelet -Version: 1.15.5-00 -Installed-Size: 116895 +Version: 1.17.12-00 +Installed-Size: 109103 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.5-00_amd64_feba4d4831a02a994a71708885f0fd043b983ae2787a6d2eb1f1ae80b0f199f0.deb +Filename: pool/kubelet_1.17.12-00_amd64_53b3002cd3d9ed565986f8a88b3a82984ab45ca72fed9310bb494d1ae930d23d.deb Priority: optional -SHA256: feba4d4831a02a994a71708885f0fd043b983ae2787a6d2eb1f1ae80b0f199f0 +SHA256: 53b3002cd3d9ed565986f8a88b3a82984ab45ca72fed9310bb494d1ae930d23d Section: misc -Size: 20268296 +Size: 19240772 Package: kubelet -Version: 1.15.6-00 -Installed-Size: 116903 +Version: 1.17.13-00 +Installed-Size: 109107 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.6-00_amd64_ef88a8ae8a9474be1aee0b508ae51ab990503086061f1a9c83677b67466f15bb.deb +Filename: pool/kubelet_1.17.13-00_amd64_a0366297fad9b659917a20a29222edbfd37c61bca650400f5af2ed28383b7898.deb Priority: optional -SHA256: ef88a8ae8a9474be1aee0b508ae51ab990503086061f1a9c83677b67466f15bb +SHA256: a0366297fad9b659917a20a29222edbfd37c61bca650400f5af2ed28383b7898 Section: misc -Size: 20257112 +Size: 19234088 Package: kubelet -Version: 1.15.7-00 -Installed-Size: 116911 +Version: 1.17.14-00 +Installed-Size: 109111 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.7-00_amd64_0d2f457797d92038f9ba7f0c73aa550759d865185219a9ec84fcee1fac4664ba.deb +Filename: pool/kubelet_1.17.14-00_amd64_6463b8a51fde0a7f05ee6bda4b2d325207fe4ade8c385fd1524a01caeb2915f5.deb Priority: optional -SHA256: 0d2f457797d92038f9ba7f0c73aa550759d865185219a9ec84fcee1fac4664ba +SHA256: 6463b8a51fde0a7f05ee6bda4b2d325207fe4ade8c385fd1524a01caeb2915f5 Section: misc -Size: 20264192 +Size: 19231828 Package: kubelet -Version: 1.15.8-00 -Installed-Size: 116919 +Version: 1.17.15-00 +Installed-Size: 108999 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.8-00_amd64_1bce461a8ece0f4f3ca3d45f7b2a837d679768d2ca34a15239417deea5d8ede0.deb +Filename: pool/kubelet_1.17.15-00_amd64_24ac803527e9bc38300980574d9a9195361f905b766fe288101183464fe21c9c.deb Priority: optional -SHA256: 1bce461a8ece0f4f3ca3d45f7b2a837d679768d2ca34a15239417deea5d8ede0 +SHA256: 24ac803527e9bc38300980574d9a9195361f905b766fe288101183464fe21c9c Section: misc -Size: 20277792 +Size: 19242360 Package: kubelet -Version: 1.15.9-00 -Installed-Size: 116915 +Version: 1.17.16-00 +Installed-Size: 108999 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.9-00_amd64_6a8a4a1643d5e2c84b2c99c478eb94c008bc3ac3ee7a1bdf9d4dd0b911acf04e.deb +Filename: pool/kubelet_1.17.16-00_amd64_3064b93176985cd0be1b7398f6b5d68ae1f040516db249c244f688b6f7240b58.deb Priority: optional -SHA256: 6a8a4a1643d5e2c84b2c99c478eb94c008bc3ac3ee7a1bdf9d4dd0b911acf04e +SHA256: 3064b93176985cd0be1b7398f6b5d68ae1f040516db249c244f688b6f7240b58 Section: misc -Size: 20266584 +Size: 19239828 Package: kubelet -Version: 1.15.10-00 -Installed-Size: 116939 +Version: 1.17.17-00 +Installed-Size: 108999 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.10-00_amd64_4c21beb7ae2571ec4f3264dee23ce6c4c4a0cf43bcb266a379feadafc106cce0.deb +Filename: pool/kubelet_1.17.17-00_amd64_3fd2bfc68f9aaad474357b34b9f0a0d7efa210cbdb45e58a9d7bcf7da746696e.deb Priority: optional -SHA256: 4c21beb7ae2571ec4f3264dee23ce6c4c4a0cf43bcb266a379feadafc106cce0 +SHA256: 3fd2bfc68f9aaad474357b34b9f0a0d7efa210cbdb45e58a9d7bcf7da746696e Section: misc -Size: 20264556 +Size: 19229824 Package: kubelet -Version: 1.15.11-00 -Installed-Size: 116963 +Version: 1.18.0-00 +Installed-Size: 110614 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.11-00_amd64_e2617978e2b7279323b78c9944e270db89d06f61fcfe39df9b066705c4a19c6e.deb +Filename: pool/kubelet_1.18.0-00_amd64_22b5dc9edb80f7791036fb47223c1cbbeb7685f332cdcbf9cfa12b858f9d19bb.deb Priority: optional -SHA256: e2617978e2b7279323b78c9944e270db89d06f61fcfe39df9b066705c4a19c6e +SHA256: 22b5dc9edb80f7791036fb47223c1cbbeb7685f332cdcbf9cfa12b858f9d19bb Section: misc -Size: 20272676 +Size: 19431624 Package: kubelet -Version: 1.15.12-00 -Installed-Size: 116979 +Version: 1.18.1-00 +Installed-Size: 110630 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.15.12-00_amd64_059c12052953b5d13971735686abafc8e5fee6ca01c37a2db4b615df0bbc8425.deb +Filename: pool/kubelet_1.18.1-00_amd64_cf8f66fa6c573e290943c45a4552796426219d8611654c0c7ba711c862a6c7a8.deb Priority: optional -SHA256: 059c12052953b5d13971735686abafc8e5fee6ca01c37a2db4b615df0bbc8425 +SHA256: cf8f66fa6c573e290943c45a4552796426219d8611654c0c7ba711c862a6c7a8 Section: misc -Size: 20277612 +Size: 19431700 Package: kubelet -Version: 1.16.0-00 -Installed-Size: 120249 +Version: 1.18.2-00 +Installed-Size: 110634 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.0-00_amd64_e919939f5dad4bc7b0047fe2cf2870ab1946e87f948ab7f75bc1d63305436664.deb +Filename: pool/kubelet_1.18.2-00_amd64_1fb09333a48950c243d165ba9b4989a99ad8130d135d8b18e72bcb151359d6fe.deb Priority: optional -SHA256: e919939f5dad4bc7b0047fe2cf2870ab1946e87f948ab7f75bc1d63305436664 +SHA256: 1fb09333a48950c243d165ba9b4989a99ad8130d135d8b18e72bcb151359d6fe Section: misc -Size: 20694552 +Size: 19465172 Package: kubelet -Version: 1.16.1-00 -Installed-Size: 120257 +Version: 1.18.3-00 +Installed-Size: 110642 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.1-00_amd64_ae1d16ae8e2b73a3224a41c0730be2d812870b7cb7307a8f02d13038d572d05d.deb +Filename: pool/kubelet_1.18.3-00_amd64_fb432bb5f4ff7c42123ba2d8f961b57378d8e1f9d571e1ee05d9b92f3bb0114a.deb Priority: optional -SHA256: ae1d16ae8e2b73a3224a41c0730be2d812870b7cb7307a8f02d13038d572d05d +SHA256: fb432bb5f4ff7c42123ba2d8f961b57378d8e1f9d571e1ee05d9b92f3bb0114a Section: misc -Size: 20696840 +Size: 19442756 Package: kubelet -Version: 1.16.2-00 -Installed-Size: 120257 +Version: 1.18.4-00 +Installed-Size: 181115 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Replaces: kubernetes-cni +Provides: kubernetes-cni +Depends: iptables (>= 1.4.21), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Conflicts: kubernetes-cni Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.2-00_amd64_f36a759a47ab98ec48e32503c4934c9cb83c323108b2c0a7aaf4c964cf62e5c1.deb +Filename: pool/kubelet_1.18.4-00_amd64_b240a3c0686125ac16c2fc4fd333c135a69b7b2b167345f2d45c4707411f9068.deb Priority: optional -SHA256: f36a759a47ab98ec48e32503c4934c9cb83c323108b2c0a7aaf4c964cf62e5c1 +SHA256: b240a3c0686125ac16c2fc4fd333c135a69b7b2b167345f2d45c4707411f9068 Section: misc -Size: 20709916 +Size: 44422864 Package: kubelet -Version: 1.16.3-00 -Installed-Size: 120261 +Version: 1.18.4-01 +Installed-Size: 110642 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.3-00_amd64_77c3d05510bc1f753834c30de6a1a7fc032ecfb906527bc270663428b371c477.deb +Filename: pool/kubelet_1.18.4-01_amd64_5688c06fd01c173f5a621ebeb755e452d3c543ff0186f0cf284413dd367dc87f.deb Priority: optional -SHA256: 77c3d05510bc1f753834c30de6a1a7fc032ecfb906527bc270663428b371c477 +SHA256: 5688c06fd01c173f5a621ebeb755e452d3c543ff0186f0cf284413dd367dc87f Section: misc -Size: 20709840 +Size: 19447732 Package: kubelet -Version: 1.16.4-00 -Installed-Size: 120277 +Version: 1.18.5-00 +Installed-Size: 110642 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.4-00_amd64_a2fc1b783de61bd4e8baaa8b8549f3b9c7c22a6d2922dbd24f693c5d241d7f0b.deb +Filename: pool/kubelet_1.18.5-00_amd64_3d1265068d4c31b449609010c895d7f30cbbd077e737f5e0849fc985ff0cd376.deb Priority: optional -SHA256: a2fc1b783de61bd4e8baaa8b8549f3b9c7c22a6d2922dbd24f693c5d241d7f0b +SHA256: 3d1265068d4c31b449609010c895d7f30cbbd077e737f5e0849fc985ff0cd376 Section: misc -Size: 20729692 +Size: 19453860 Package: kubelet -Version: 1.16.5-00 -Installed-Size: 108532 +Version: 1.18.6-00 +Installed-Size: 110650 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.5-00_amd64_bccca7c4203a55af958e073d3868c3df210052976e156aa38c5b5c20eb529bfd.deb +Filename: pool/kubelet_1.18.6-00_amd64_104709951795724cd57228d458da3adc3746c77447132f2e1317666b321eebbb.deb Priority: optional -SHA256: bccca7c4203a55af958e073d3868c3df210052976e156aa38c5b5c20eb529bfd +SHA256: 104709951795724cd57228d458da3adc3746c77447132f2e1317666b321eebbb Section: misc -Size: 19104088 +Size: 19448640 Package: kubelet -Version: 1.16.6-00 -Installed-Size: 108528 +Version: 1.18.8-00 +Installed-Size: 110658 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.6-00_amd64_37e04fde1b70d0da78ce5ee8b4ca7ed9e40350a9bd90930466a2382c13bdc587.deb +Filename: pool/kubelet_1.18.8-00_amd64_fcf6e33fb926b3c96ee418cd319b6680c6085859cab4b9ac6a33e56cd909124b.deb Priority: optional -SHA256: 37e04fde1b70d0da78ce5ee8b4ca7ed9e40350a9bd90930466a2382c13bdc587 +SHA256: fcf6e33fb926b3c96ee418cd319b6680c6085859cab4b9ac6a33e56cd909124b Section: misc -Size: 19091540 +Size: 19448688 Package: kubelet -Version: 1.16.7-00 -Installed-Size: 108544 +Version: 1.18.9-00 +Installed-Size: 110678 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.7-00_amd64_64a9bcd959663f062ee5b222414637b6f9a2f3fc1792424daa67049216b0ba9f.deb +Filename: pool/kubelet_1.18.9-00_amd64_1d0a5c210dbcacac78e06b91469abf4c7acaf81042d5480f172784346888d6ad.deb Priority: optional -SHA256: 64a9bcd959663f062ee5b222414637b6f9a2f3fc1792424daa67049216b0ba9f +SHA256: 1d0a5c210dbcacac78e06b91469abf4c7acaf81042d5480f172784346888d6ad Section: misc -Size: 19096492 +Size: 19454812 Package: kubelet -Version: 1.16.8-00 -Installed-Size: 108592 +Version: 1.18.10-00 +Installed-Size: 110710 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.8-00_amd64_a19bad53d7daf301a7f1ca1b5f6cadd022a3e6080e69c90f35732bfd516ce00f.deb +Filename: pool/kubelet_1.18.10-00_amd64_c207747f1007a4a6c177010bb38c51bafc9f0aacc86fbd3e2daf857bd7f4ed6f.deb Priority: optional -SHA256: a19bad53d7daf301a7f1ca1b5f6cadd022a3e6080e69c90f35732bfd516ce00f +SHA256: c207747f1007a4a6c177010bb38c51bafc9f0aacc86fbd3e2daf857bd7f4ed6f Section: misc -Size: 19114548 +Size: 19452700 Package: kubelet -Version: 1.16.9-00 -Installed-Size: 108604 +Version: 1.18.12-00 +Installed-Size: 110714 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.9-00_amd64_b6e78373d892c1ff064fb6463aee53eb040f9b28866286f4f054ebb51723da3b.deb +Filename: pool/kubelet_1.18.12-00_amd64_2721f9b5b0748c56633b9f3995c0a03be72ff19b818259cc28ab0fe791fa5ac4.deb Priority: optional -SHA256: b6e78373d892c1ff064fb6463aee53eb040f9b28866286f4f054ebb51723da3b +SHA256: 2721f9b5b0748c56633b9f3995c0a03be72ff19b818259cc28ab0fe791fa5ac4 Section: misc -Size: 19112804 +Size: 19461236 Package: kubelet -Version: 1.16.10-00 -Installed-Size: 108620 +Version: 1.18.13-00 +Installed-Size: 110606 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.10-00_amd64_2a52e6feba725702c7e0d201e89630c6784fb071d366e2f210d1f78892ccb3f4.deb +Filename: pool/kubelet_1.18.13-00_amd64_a058109bfd8bcbff55be7cd6a1fa98773be656ce315567968b4dd3aa6c9a1a3e.deb Priority: optional -SHA256: 2a52e6feba725702c7e0d201e89630c6784fb071d366e2f210d1f78892ccb3f4 +SHA256: a058109bfd8bcbff55be7cd6a1fa98773be656ce315567968b4dd3aa6c9a1a3e Section: misc -Size: 19094096 +Size: 19456800 Package: kubelet -Version: 1.16.11-00 -Installed-Size: 179093 +Version: 1.18.14-00 +Installed-Size: 110614 Maintainer: Kubernetes Authors Architecture: amd64 -Replaces: kubernetes-cni -Provides: kubernetes-cni -Depends: iptables (>= 1.4.21), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack -Conflicts: kubernetes-cni +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.11-00_amd64_3ed94d8b7d9a399e272c8eb50d6bba1052f86ad5f3ea76f91760e930e4498027.deb +Filename: pool/kubelet_1.18.14-00_amd64_bfcf3e9fc08602f7551b2851ff74b9a8238957f5b37fbf8a831de348f8ce6885.deb Priority: optional -SHA256: 3ed94d8b7d9a399e272c8eb50d6bba1052f86ad5f3ea76f91760e930e4498027 +SHA256: bfcf3e9fc08602f7551b2851ff74b9a8238957f5b37fbf8a831de348f8ce6885 Section: misc -Size: 44060824 +Size: 19468820 Package: kubelet -Version: 1.16.11-01 -Installed-Size: 108620 +Version: 1.18.15-00 +Installed-Size: 110618 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.11-01_amd64_51367f7719a9d7d39cab07678829bab4802c1788e470e74baebe8ce1f23bf4eb.deb +Filename: pool/kubelet_1.18.15-00_amd64_4f56aafa56fe0fec3aef283b6b7e016d6acfce2a129ae1b05849aad1af7ab982.deb Priority: optional -SHA256: 51367f7719a9d7d39cab07678829bab4802c1788e470e74baebe8ce1f23bf4eb +SHA256: 4f56aafa56fe0fec3aef283b6b7e016d6acfce2a129ae1b05849aad1af7ab982 Section: misc -Size: 19113412 +Size: 19469856 Package: kubelet -Version: 1.16.12-00 -Installed-Size: 108616 +Version: 1.18.16-00 +Installed-Size: 110638 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.12-00_amd64_65fc6e261a0858cbd9878a936b6bb75ef3f229bbb49455c1463e9821904588b7.deb +Filename: pool/kubelet_1.18.16-00_amd64_3cd214ce747c4dfc4510af59992e2e5fa30f3d0fdf327590a49b11311354f752.deb Priority: optional -SHA256: 65fc6e261a0858cbd9878a936b6bb75ef3f229bbb49455c1463e9821904588b7 +SHA256: 3cd214ce747c4dfc4510af59992e2e5fa30f3d0fdf327590a49b11311354f752 Section: misc -Size: 19112848 +Size: 19475560 Package: kubelet -Version: 1.16.13-00 -Installed-Size: 108624 +Version: 1.18.17-00 +Installed-Size: 110646 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.13-00_amd64_3f0b8d4650c996b285946dcf9f302282c52a6819960eeb0ee56cad1f217e8c16.deb +Filename: pool/kubelet_1.18.17-00_amd64_61ebc47d25ef97704ab12a67c4502db65638044d6ad458023729fdd05a3b7c6c.deb Priority: optional -SHA256: 3f0b8d4650c996b285946dcf9f302282c52a6819960eeb0ee56cad1f217e8c16 +SHA256: 61ebc47d25ef97704ab12a67c4502db65638044d6ad458023729fdd05a3b7c6c Section: misc -Size: 19121204 +Size: 19482224 Package: kubelet -Version: 1.16.14-00 -Installed-Size: 108641 +Version: 1.18.18-00 +Installed-Size: 110638 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.14-00_amd64_a26311f529fca86bfd2f6fea4b761cdfa5111574819cc5f349308cd86d26fce9.deb +Filename: pool/kubelet_1.18.18-00_amd64_0870c072763650136a89ba8f57acdf6576f8c587a5f0859f565ac749bfb73880.deb Priority: optional -SHA256: a26311f529fca86bfd2f6fea4b761cdfa5111574819cc5f349308cd86d26fce9 +SHA256: 0870c072763650136a89ba8f57acdf6576f8c587a5f0859f565ac749bfb73880 Section: misc -Size: 19120636 +Size: 19490340 Package: kubelet -Version: 1.16.15-00 -Installed-Size: 108641 +Version: 1.18.19-00 +Installed-Size: 110650 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.16.15-00_amd64_bc59525e7c56357f83d92c80ece1047fa27b8370c313cb6ba2c356bccc0e4293.deb +Filename: pool/kubelet_1.18.19-00_amd64_c50477c44791d78b4b54d0581d706b07eccdbdf32dc9ffc33d138b60aa65d0a1.deb Priority: optional -SHA256: bc59525e7c56357f83d92c80ece1047fa27b8370c313cb6ba2c356bccc0e4293 +SHA256: c50477c44791d78b4b54d0581d706b07eccdbdf32dc9ffc33d138b60aa65d0a1 Section: misc -Size: 19128436 +Size: 19480508 Package: kubelet -Version: 1.17.0-00 -Installed-Size: 108958 +Version: 1.18.20-00 +Installed-Size: 110646 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack, init-system-helpers (>= 1.18~) +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.0-00_amd64_ee141d9d5fe9c4db5c88022d837c9a587d52223c9dac5171c60b596a8381365c.deb +Filename: pool/kubelet_1.18.20-00_amd64_cdfaf33c59db22e9b42f99dd5b4f834d4681e3d7029adbd7b76efd4d75bf4bed.deb Priority: optional -SHA256: ee141d9d5fe9c4db5c88022d837c9a587d52223c9dac5171c60b596a8381365c +SHA256: cdfaf33c59db22e9b42f99dd5b4f834d4681e3d7029adbd7b76efd4d75bf4bed Section: misc -Size: 19182372 +Size: 19495452 Package: kubelet -Version: 1.17.1-00 -Installed-Size: 108971 +Version: 1.19.0-00 +Installed-Size: 107410 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.1-00_amd64_c9133d2dedcc6364fe525cd8ea15a3024b7bf866f5465121d561032006e20be6.deb +Filename: pool/kubelet_1.19.0-00_amd64_d579a0b18e07c3a78f9ec0e21514fb3ec83b30248b9f543f0ee5815dd576054f.deb Priority: optional -SHA256: c9133d2dedcc6364fe525cd8ea15a3024b7bf866f5465121d561032006e20be6 +SHA256: d579a0b18e07c3a78f9ec0e21514fb3ec83b30248b9f543f0ee5815dd576054f Section: misc -Size: 19211964 +Size: 18211820 Package: kubelet -Version: 1.17.2-00 -Installed-Size: 108967 +Version: 1.19.1-00 +Installed-Size: 107410 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.2-00_amd64_f22c86b79e7e98d18aaca1690d96b977bca11e9541170716bab0cb664f9e583c.deb +Filename: pool/kubelet_1.19.1-00_amd64_c0e40681b987aeecb1fdb9112ef3e561f35c5db00ce3339688ae357806a12f9c.deb Priority: optional -SHA256: f22c86b79e7e98d18aaca1690d96b977bca11e9541170716bab0cb664f9e583c +SHA256: c0e40681b987aeecb1fdb9112ef3e561f35c5db00ce3339688ae357806a12f9c Section: misc -Size: 19204852 +Size: 18211976 Package: kubelet -Version: 1.17.3-00 -Installed-Size: 108983 +Version: 1.19.2-00 +Installed-Size: 107410 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.3-00_amd64_f0b930ce4160af585fb10dc8e4f76747a60f04b6343c45405afbe79d380ae41f.deb +Filename: pool/kubelet_1.19.2-00_amd64_fa43b848ed839e54df6d9b182e705b565947c4f5eac6ecdd0837ae7061886e0b.deb Priority: optional -SHA256: f0b930ce4160af585fb10dc8e4f76747a60f04b6343c45405afbe79d380ae41f +SHA256: fa43b848ed839e54df6d9b182e705b565947c4f5eac6ecdd0837ae7061886e0b Section: misc -Size: 19203564 +Size: 18218756 Package: kubelet -Version: 1.17.4-00 -Installed-Size: 109027 +Version: 1.19.3-00 +Installed-Size: 107442 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.4-00_amd64_6fcbfedf0fc827455f6f762dff02ac0ab302722996d6622b426a4dea0304ad35.deb +Filename: pool/kubelet_1.19.3-00_amd64_03a16e592ababd5fbd11dc5c90503f166340d0f87efd69315892151df20f0a6a.deb Priority: optional -SHA256: 6fcbfedf0fc827455f6f762dff02ac0ab302722996d6622b426a4dea0304ad35 +SHA256: 03a16e592ababd5fbd11dc5c90503f166340d0f87efd69315892151df20f0a6a Section: misc -Size: 19217052 +Size: 18208700 Package: kubelet -Version: 1.17.5-00 -Installed-Size: 109047 +Version: 1.19.4-00 +Installed-Size: 107451 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.5-00_amd64_87ec51713fa6dc06936f50b1b4c9877ccb80635002dd0141a62ece07246e9530.deb +Filename: pool/kubelet_1.19.4-00_amd64_c1526178b77cc0ef6d4c7ec90457f710d305d32a521ce384520655ccc9f74503.deb Priority: optional -SHA256: 87ec51713fa6dc06936f50b1b4c9877ccb80635002dd0141a62ece07246e9530 +SHA256: c1526178b77cc0ef6d4c7ec90457f710d305d32a521ce384520655ccc9f74503 Section: misc -Size: 19216404 +Size: 18202152 Package: kubelet -Version: 1.17.6-00 -Installed-Size: 109063 +Version: 1.19.5-00 +Installed-Size: 107339 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.6-00_amd64_7e9eeedd1bc3f0719ffa0d2e0cb26ab7d679641651726b86c3a7a73ceec35d25.deb +Filename: pool/kubelet_1.19.5-00_amd64_d87b20825d6548366eaa115c842c9ff44afceb5334f81d5c1781d0a20870f9ca.deb Priority: optional -SHA256: 7e9eeedd1bc3f0719ffa0d2e0cb26ab7d679641651726b86c3a7a73ceec35d25 +SHA256: d87b20825d6548366eaa115c842c9ff44afceb5334f81d5c1781d0a20870f9ca Section: misc -Size: 19220324 +Size: 18225068 Package: kubelet -Version: 1.17.7-00 -Installed-Size: 179540 +Version: 1.19.6-00 +Installed-Size: 107347 Maintainer: Kubernetes Authors Architecture: amd64 -Replaces: kubernetes-cni -Provides: kubernetes-cni -Depends: iptables (>= 1.4.21), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack -Conflicts: kubernetes-cni +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.7-00_amd64_0166b6efacad1d1108bf2c67aa6fbd6733a3eacd18a3945578e4379d90cbdeec.deb +Filename: pool/kubelet_1.19.6-00_amd64_5b57b709b0bf19ce60743a2e6544e008465f41cb0ced3c7fa41461d32ca95c09.deb Priority: optional -SHA256: 0166b6efacad1d1108bf2c67aa6fbd6733a3eacd18a3945578e4379d90cbdeec +SHA256: 5b57b709b0bf19ce60743a2e6544e008465f41cb0ced3c7fa41461d32ca95c09 Section: misc -Size: 44176952 +Size: 18213128 Package: kubelet -Version: 1.17.7-01 -Installed-Size: 109067 +Version: 1.19.7-00 +Installed-Size: 107375 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.7-01_amd64_ad674c16c6aab69995b8c8605c1fea76f20e3b8101041ec83badd1fc7bcd978d.deb +Filename: pool/kubelet_1.19.7-00_amd64_87f9e0b99bba70eaf2dfe7544125f2064a51c451329f336ae52e2770989fa287.deb Priority: optional -SHA256: ad674c16c6aab69995b8c8605c1fea76f20e3b8101041ec83badd1fc7bcd978d +SHA256: 87f9e0b99bba70eaf2dfe7544125f2064a51c451329f336ae52e2770989fa287 Section: misc -Size: 19222520 +Size: 18224896 Package: kubelet -Version: 1.17.8-00 -Installed-Size: 109063 +Version: 1.19.8-00 +Installed-Size: 107475 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.8-00_amd64_35aaec7a6c1ffb8dce774e5543b2cfb8a8d4a964eec01c7f3e84aa53f3a9bf9b.deb +Filename: pool/kubelet_1.19.8-00_amd64_3f0ff130a2155827d7d4eb03b70a8dc83105946e0cd3c842f7bd154767c9fd8b.deb Priority: optional -SHA256: 35aaec7a6c1ffb8dce774e5543b2cfb8a8d4a964eec01c7f3e84aa53f3a9bf9b +SHA256: 3f0ff130a2155827d7d4eb03b70a8dc83105946e0cd3c842f7bd154767c9fd8b Section: misc -Size: 19219016 +Size: 18226180 Package: kubelet -Version: 1.17.9-00 -Installed-Size: 109075 +Version: 1.19.9-00 +Installed-Size: 107471 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.9-00_amd64_2c2710b1c2c3d32e472ae1810d17b973255227ccacf8e900adb5dbfe9894385a.deb +Filename: pool/kubelet_1.19.9-00_amd64_408e1ef27f15eea9f147ea63e1d848481ce1d614ad919122deb73ce337ecdedb.deb Priority: optional -SHA256: 2c2710b1c2c3d32e472ae1810d17b973255227ccacf8e900adb5dbfe9894385a +SHA256: 408e1ef27f15eea9f147ea63e1d848481ce1d614ad919122deb73ce337ecdedb Section: misc -Size: 19222140 +Size: 18238584 Package: kubelet -Version: 1.17.11-00 -Installed-Size: 109087 +Version: 1.19.10-00 +Installed-Size: 107455 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.11-00_amd64_ac4eacd08bd4210fc076606c761dce6e1ba75833180808c5e49aaeb478bba2ab.deb +Filename: pool/kubelet_1.19.10-00_amd64_f58d0e011dc6388fa51e189fabfe461d668148428106c4df95df744f0904db2c.deb Priority: optional -SHA256: ac4eacd08bd4210fc076606c761dce6e1ba75833180808c5e49aaeb478bba2ab +SHA256: f58d0e011dc6388fa51e189fabfe461d668148428106c4df95df744f0904db2c Section: misc -Size: 19224980 +Size: 18233624 Package: kubelet -Version: 1.17.12-00 -Installed-Size: 109103 +Version: 1.19.11-00 +Installed-Size: 107459 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.12-00_amd64_53b3002cd3d9ed565986f8a88b3a82984ab45ca72fed9310bb494d1ae930d23d.deb +Filename: pool/kubelet_1.19.11-00_amd64_74ac2726639c2ae6870b4968d2b33222cfc322aba251d838020c78ca7ac6c46b.deb Priority: optional -SHA256: 53b3002cd3d9ed565986f8a88b3a82984ab45ca72fed9310bb494d1ae930d23d +SHA256: 74ac2726639c2ae6870b4968d2b33222cfc322aba251d838020c78ca7ac6c46b Section: misc -Size: 19240772 +Size: 18251772 Package: kubelet -Version: 1.17.13-00 -Installed-Size: 109107 +Version: 1.19.12-00 +Installed-Size: 107491 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.13-00_amd64_a0366297fad9b659917a20a29222edbfd37c61bca650400f5af2ed28383b7898.deb +Filename: pool/kubelet_1.19.12-00_amd64_cb1bf6b286d69170bb70400b22b09e6f15b575300bf2021c154114ce22a9e3a6.deb Priority: optional -SHA256: a0366297fad9b659917a20a29222edbfd37c61bca650400f5af2ed28383b7898 +SHA256: cb1bf6b286d69170bb70400b22b09e6f15b575300bf2021c154114ce22a9e3a6 Section: misc -Size: 19234088 +Size: 18251788 Package: kubelet -Version: 1.17.14-00 -Installed-Size: 109111 +Version: 1.19.13-00 +Installed-Size: 107499 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.14-00_amd64_6463b8a51fde0a7f05ee6bda4b2d325207fe4ade8c385fd1524a01caeb2915f5.deb +Filename: pool/kubelet_1.19.13-00_amd64_c523ad0108c8d897a8f14d655a7e3ed2c067ff3ecd88b618213d278576c16510.deb Priority: optional -SHA256: 6463b8a51fde0a7f05ee6bda4b2d325207fe4ade8c385fd1524a01caeb2915f5 +SHA256: c523ad0108c8d897a8f14d655a7e3ed2c067ff3ecd88b618213d278576c16510 Section: misc -Size: 19231828 +Size: 18252024 Package: kubelet -Version: 1.17.15-00 -Installed-Size: 108999 +Version: 1.19.14-00 +Installed-Size: 107503 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.15-00_amd64_24ac803527e9bc38300980574d9a9195361f905b766fe288101183464fe21c9c.deb +Filename: pool/kubelet_1.19.14-00_amd64_0acfab317c19610c0b98920a9314a03893a04b6fd84d908949cb00810024929d.deb Priority: optional -SHA256: 24ac803527e9bc38300980574d9a9195361f905b766fe288101183464fe21c9c +SHA256: 0acfab317c19610c0b98920a9314a03893a04b6fd84d908949cb00810024929d Section: misc -Size: 19242360 +Size: 18278116 Package: kubelet -Version: 1.17.16-00 -Installed-Size: 108999 +Version: 1.19.15-00 +Installed-Size: 107523 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.16-00_amd64_3064b93176985cd0be1b7398f6b5d68ae1f040516db249c244f688b6f7240b58.deb +Filename: pool/kubelet_1.19.15-00_amd64_caa882fa82b453d4f8a7e33a93bb9e7ed2c63c7a2040594760f93e50b59e0839.deb Priority: optional -SHA256: 3064b93176985cd0be1b7398f6b5d68ae1f040516db249c244f688b6f7240b58 +SHA256: caa882fa82b453d4f8a7e33a93bb9e7ed2c63c7a2040594760f93e50b59e0839 Section: misc -Size: 19239828 +Size: 18251236 Package: kubelet -Version: 1.17.17-00 -Installed-Size: 108999 +Version: 1.19.16-00 +Installed-Size: 107547 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.17.17-00_amd64_3fd2bfc68f9aaad474357b34b9f0a0d7efa210cbdb45e58a9d7bcf7da746696e.deb +Filename: pool/kubelet_1.19.16-00_amd64_a5d729e1e5dbf0606bdec37db332196974a277e62adc8b3527a78f21a523fdb2.deb Priority: optional -SHA256: 3fd2bfc68f9aaad474357b34b9f0a0d7efa210cbdb45e58a9d7bcf7da746696e +SHA256: a5d729e1e5dbf0606bdec37db332196974a277e62adc8b3527a78f21a523fdb2 Section: misc -Size: 19229824 +Size: 18262496 Package: kubelet -Version: 1.18.0-00 -Installed-Size: 110614 +Version: 1.20.0-00 +Installed-Size: 111316 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.0-00_amd64_22b5dc9edb80f7791036fb47223c1cbbeb7685f332cdcbf9cfa12b858f9d19bb.deb +Filename: pool/kubelet_1.20.0-00_amd64_5083777e7ef63c6b6ad3b673790e55f3782ce36340a18e30761234c959b0f7e4.deb Priority: optional -SHA256: 22b5dc9edb80f7791036fb47223c1cbbeb7685f332cdcbf9cfa12b858f9d19bb +SHA256: 5083777e7ef63c6b6ad3b673790e55f3782ce36340a18e30761234c959b0f7e4 Section: misc -Size: 19431624 +Size: 18841708 Package: kubelet -Version: 1.18.1-00 -Installed-Size: 110630 +Version: 1.20.1-00 +Installed-Size: 111324 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.1-00_amd64_cf8f66fa6c573e290943c45a4552796426219d8611654c0c7ba711c862a6c7a8.deb +Filename: pool/kubelet_1.20.1-00_amd64_560a52294b8b339e0ca8ddbc480218e93ebb01daef0446887803815bcd0c41eb.deb Priority: optional -SHA256: cf8f66fa6c573e290943c45a4552796426219d8611654c0c7ba711c862a6c7a8 +SHA256: 560a52294b8b339e0ca8ddbc480218e93ebb01daef0446887803815bcd0c41eb Section: misc -Size: 19431700 +Size: 18859928 Package: kubelet -Version: 1.18.2-00 -Installed-Size: 110634 +Version: 1.20.2-00 +Installed-Size: 111356 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.2-00_amd64_1fb09333a48950c243d165ba9b4989a99ad8130d135d8b18e72bcb151359d6fe.deb +Filename: pool/kubelet_1.20.2-00_amd64_cc0be8c7d5b3bebc1fd34f46b62fd7d952c021fae356ff1d0904c55ddfcf6ea4.deb Priority: optional -SHA256: 1fb09333a48950c243d165ba9b4989a99ad8130d135d8b18e72bcb151359d6fe +SHA256: cc0be8c7d5b3bebc1fd34f46b62fd7d952c021fae356ff1d0904c55ddfcf6ea4 Section: misc -Size: 19465172 +Size: 18859300 Package: kubelet -Version: 1.18.3-00 -Installed-Size: 110642 +Version: 1.20.4-00 +Installed-Size: 111452 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.7.5), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.3-00_amd64_fb432bb5f4ff7c42123ba2d8f961b57378d8e1f9d571e1ee05d9b92f3bb0114a.deb +Filename: pool/kubelet_1.20.4-00_amd64_5b6c470dfcfe2c7c03517e9909896cc9ce837e3617d05002bc3af7f2ed504481.deb Priority: optional -SHA256: fb432bb5f4ff7c42123ba2d8f961b57378d8e1f9d571e1ee05d9b92f3bb0114a +SHA256: 5b6c470dfcfe2c7c03517e9909896cc9ce837e3617d05002bc3af7f2ed504481 Section: misc -Size: 19442756 +Size: 18872292 Package: kubelet -Version: 1.18.4-00 -Installed-Size: 181115 +Version: 1.20.5-00 +Installed-Size: 111457 Maintainer: Kubernetes Authors Architecture: amd64 -Replaces: kubernetes-cni -Provides: kubernetes-cni -Depends: iptables (>= 1.4.21), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack -Conflicts: kubernetes-cni +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.4-00_amd64_b240a3c0686125ac16c2fc4fd333c135a69b7b2b167345f2d45c4707411f9068.deb +Filename: pool/kubelet_1.20.5-00_amd64_8cff8958c09d721a6e1bc77c4c27d27daf96446e595c9c54aea3c45fe8c06d11.deb Priority: optional -SHA256: b240a3c0686125ac16c2fc4fd333c135a69b7b2b167345f2d45c4707411f9068 +SHA256: 8cff8958c09d721a6e1bc77c4c27d27daf96446e595c9c54aea3c45fe8c06d11 Section: misc -Size: 44422864 +Size: 18890104 Package: kubelet -Version: 1.18.4-01 -Installed-Size: 110642 +Version: 1.20.6-00 +Installed-Size: 111429 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.4-01_amd64_5688c06fd01c173f5a621ebeb755e452d3c543ff0186f0cf284413dd367dc87f.deb +Filename: pool/kubelet_1.20.6-00_amd64_220ab4edcac51e77a4df7f6a0430bbd3c69ffe153eb4b9d1dd77c52e9c5c8497.deb Priority: optional -SHA256: 5688c06fd01c173f5a621ebeb755e452d3c543ff0186f0cf284413dd367dc87f +SHA256: 220ab4edcac51e77a4df7f6a0430bbd3c69ffe153eb4b9d1dd77c52e9c5c8497 Section: misc -Size: 19447732 +Size: 18876560 Package: kubelet -Version: 1.18.5-00 -Installed-Size: 110642 +Version: 1.20.7-00 +Installed-Size: 111437 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.5-00_amd64_3d1265068d4c31b449609010c895d7f30cbbd077e737f5e0849fc985ff0cd376.deb +Filename: pool/kubelet_1.20.7-00_amd64_2b1ddde1f40f250ee4045adb07e4d12a43fc8e31f4411e9b3cea02d974435969.deb Priority: optional -SHA256: 3d1265068d4c31b449609010c895d7f30cbbd077e737f5e0849fc985ff0cd376 +SHA256: 2b1ddde1f40f250ee4045adb07e4d12a43fc8e31f4411e9b3cea02d974435969 Section: misc -Size: 19453860 +Size: 18867004 Package: kubelet -Version: 1.18.6-00 -Installed-Size: 110650 +Version: 1.20.8-00 +Installed-Size: 111473 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.6-00_amd64_104709951795724cd57228d458da3adc3746c77447132f2e1317666b321eebbb.deb +Filename: pool/kubelet_1.20.8-00_amd64_ce884d30b1dee50e94e9a2e4e4ac8dd1b67fd9682907345107fd0aa0149b6dd1.deb Priority: optional -SHA256: 104709951795724cd57228d458da3adc3746c77447132f2e1317666b321eebbb +SHA256: ce884d30b1dee50e94e9a2e4e4ac8dd1b67fd9682907345107fd0aa0149b6dd1 Section: misc -Size: 19448640 +Size: 18890580 Package: kubelet -Version: 1.18.8-00 -Installed-Size: 110658 +Version: 1.20.9-00 +Installed-Size: 111477 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.8-00_amd64_fcf6e33fb926b3c96ee418cd319b6680c6085859cab4b9ac6a33e56cd909124b.deb +Filename: pool/kubelet_1.20.9-00_amd64_9cd4f43c654a4ca72e3bc7f98499cd179bbfbbf2d70bd6904d25835a7602f07d.deb Priority: optional -SHA256: fcf6e33fb926b3c96ee418cd319b6680c6085859cab4b9ac6a33e56cd909124b +SHA256: 9cd4f43c654a4ca72e3bc7f98499cd179bbfbbf2d70bd6904d25835a7602f07d Section: misc -Size: 19448688 +Size: 18884132 -Package: kubelet -Version: 1.18.9-00 -Installed-Size: 110678 +Package: kubelet +Version: 1.20.10-00 +Installed-Size: 111485 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.9-00_amd64_1d0a5c210dbcacac78e06b91469abf4c7acaf81042d5480f172784346888d6ad.deb +Filename: pool/kubelet_1.20.10-00_amd64_3a86122466ef619a60e6e81f2ed57fad76f5d2790c7742c811353b82ae749bb6.deb Priority: optional -SHA256: 1d0a5c210dbcacac78e06b91469abf4c7acaf81042d5480f172784346888d6ad +SHA256: 3a86122466ef619a60e6e81f2ed57fad76f5d2790c7742c811353b82ae749bb6 Section: misc -Size: 19454812 +Size: 18887424 Package: kubelet -Version: 1.18.10-00 -Installed-Size: 110710 +Version: 1.20.11-00 +Installed-Size: 111489 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.10-00_amd64_c207747f1007a4a6c177010bb38c51bafc9f0aacc86fbd3e2daf857bd7f4ed6f.deb +Filename: pool/kubelet_1.20.11-00_amd64_1bbe486b927d10ba9604ef620a903d8230650570966590cc9139b9c253b41e6e.deb Priority: optional -SHA256: c207747f1007a4a6c177010bb38c51bafc9f0aacc86fbd3e2daf857bd7f4ed6f +SHA256: 1bbe486b927d10ba9604ef620a903d8230650570966590cc9139b9c253b41e6e Section: misc -Size: 19452700 +Size: 18898608 Package: kubelet -Version: 1.18.12-00 -Installed-Size: 110714 +Version: 1.20.12-00 +Installed-Size: 111517 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.12-00_amd64_2721f9b5b0748c56633b9f3995c0a03be72ff19b818259cc28ab0fe791fa5ac4.deb +Filename: pool/kubelet_1.20.12-00_amd64_c2919089a38ff7a3854e073cc25788db3a39885da650e983a66b6997b862fdd1.deb Priority: optional -SHA256: 2721f9b5b0748c56633b9f3995c0a03be72ff19b818259cc28ab0fe791fa5ac4 +SHA256: c2919089a38ff7a3854e073cc25788db3a39885da650e983a66b6997b862fdd1 Section: misc -Size: 19461236 +Size: 18905276 Package: kubelet -Version: 1.18.13-00 -Installed-Size: 110606 +Version: 1.20.13-00 +Installed-Size: 111517 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.13-00_amd64_a058109bfd8bcbff55be7cd6a1fa98773be656ce315567968b4dd3aa6c9a1a3e.deb +Filename: pool/kubelet_1.20.13-00_amd64_1046bcadf98f29557e305e7a33b09cba9088f902848ca386ace4e1324269e759.deb Priority: optional -SHA256: a058109bfd8bcbff55be7cd6a1fa98773be656ce315567968b4dd3aa6c9a1a3e +SHA256: 1046bcadf98f29557e305e7a33b09cba9088f902848ca386ace4e1324269e759 Section: misc -Size: 19456800 +Size: 18904508 Package: kubelet -Version: 1.18.14-00 -Installed-Size: 110614 +Version: 1.20.14-00 +Installed-Size: 111521 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.14-00_amd64_bfcf3e9fc08602f7551b2851ff74b9a8238957f5b37fbf8a831de348f8ce6885.deb +Filename: pool/kubelet_1.20.14-00_amd64_ce68d54f6073f262820448d6750c2f5c098928ea567b6162a5ead852908eecc0.deb Priority: optional -SHA256: bfcf3e9fc08602f7551b2851ff74b9a8238957f5b37fbf8a831de348f8ce6885 +SHA256: ce68d54f6073f262820448d6750c2f5c098928ea567b6162a5ead852908eecc0 Section: misc -Size: 19468820 +Size: 18904092 Package: kubelet -Version: 1.18.15-00 -Installed-Size: 110618 +Version: 1.20.15-00 +Installed-Size: 111525 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.15-00_amd64_4f56aafa56fe0fec3aef283b6b7e016d6acfce2a129ae1b05849aad1af7ab982.deb +Filename: pool/kubelet_1.20.15-00_amd64_02e67343648454533e967ee2b19a2c4f2cae2b3b85d38bc9be1e589152ee082c.deb Priority: optional -SHA256: 4f56aafa56fe0fec3aef283b6b7e016d6acfce2a129ae1b05849aad1af7ab982 +SHA256: 02e67343648454533e967ee2b19a2c4f2cae2b3b85d38bc9be1e589152ee082c Section: misc -Size: 19469856 +Size: 18907736 Package: kubelet -Version: 1.18.16-00 -Installed-Size: 110638 +Version: 1.21.0-00 +Installed-Size: 115309 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.16-00_amd64_3cd214ce747c4dfc4510af59992e2e5fa30f3d0fdf327590a49b11311354f752.deb +Filename: pool/kubelet_1.21.0-00_amd64_9c0d80dfc5d3a1d45605c0244a7126370b58b02b235cf9fefe0ed136ebe13cf3.deb Priority: optional -SHA256: 3cd214ce747c4dfc4510af59992e2e5fa30f3d0fdf327590a49b11311354f752 +SHA256: 9c0d80dfc5d3a1d45605c0244a7126370b58b02b235cf9fefe0ed136ebe13cf3 Section: misc -Size: 19475560 +Size: 18786948 Package: kubelet -Version: 1.18.17-00 -Installed-Size: 110646 +Version: 1.21.1-00 +Installed-Size: 115329 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.17-00_amd64_61ebc47d25ef97704ab12a67c4502db65638044d6ad458023729fdd05a3b7c6c.deb +Filename: pool/kubelet_1.21.1-00_amd64_6dc375461a5680c2418c75062abe358453458b1d3ed4e0a4d9c59748d7fc5574.deb Priority: optional -SHA256: 61ebc47d25ef97704ab12a67c4502db65638044d6ad458023729fdd05a3b7c6c +SHA256: 6dc375461a5680c2418c75062abe358453458b1d3ed4e0a4d9c59748d7fc5574 Section: misc -Size: 19482224 +Size: 18791044 Package: kubelet -Version: 1.18.18-00 -Installed-Size: 110638 +Version: 1.21.2-00 +Installed-Size: 115396 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.18-00_amd64_0870c072763650136a89ba8f57acdf6576f8c587a5f0859f565ac749bfb73880.deb +Filename: pool/kubelet_1.21.2-00_amd64_c6901d0a0d7d32a3cb2b35210ea6d2a39be01679869859ba183611d947d8e07f.deb Priority: optional -SHA256: 0870c072763650136a89ba8f57acdf6576f8c587a5f0859f565ac749bfb73880 +SHA256: c6901d0a0d7d32a3cb2b35210ea6d2a39be01679869859ba183611d947d8e07f Section: misc -Size: 19490340 +Size: 18814416 Package: kubelet -Version: 1.18.19-00 -Installed-Size: 110650 +Version: 1.21.3-00 +Installed-Size: 115396 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.19-00_amd64_c50477c44791d78b4b54d0581d706b07eccdbdf32dc9ffc33d138b60aa65d0a1.deb +Filename: pool/kubelet_1.21.3-00_amd64_9469c24d587cd9ab749c0fd177b5c83b709d0952aa9a2c944fd363b7d0ef9118.deb Priority: optional -SHA256: c50477c44791d78b4b54d0581d706b07eccdbdf32dc9ffc33d138b60aa65d0a1 +SHA256: 9469c24d587cd9ab749c0fd177b5c83b709d0952aa9a2c944fd363b7d0ef9118 Section: misc -Size: 19480508 +Size: 18801004 Package: kubelet -Version: 1.18.20-00 -Installed-Size: 110646 +Version: 1.21.4-00 +Installed-Size: 115408 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.18.20-00_amd64_cdfaf33c59db22e9b42f99dd5b4f834d4681e3d7029adbd7b76efd4d75bf4bed.deb +Filename: pool/kubelet_1.21.4-00_amd64_8a9abc7719728ba932651c1ecadd114391d7c518ac4cf16313c946bd1fb10975.deb Priority: optional -SHA256: cdfaf33c59db22e9b42f99dd5b4f834d4681e3d7029adbd7b76efd4d75bf4bed +SHA256: 8a9abc7719728ba932651c1ecadd114391d7c518ac4cf16313c946bd1fb10975 Section: misc -Size: 19495452 +Size: 18803852 Package: kubelet -Version: 1.19.0-00 -Installed-Size: 107410 +Version: 1.21.5-00 +Installed-Size: 115593 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.6), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.0-00_amd64_d579a0b18e07c3a78f9ec0e21514fb3ec83b30248b9f543f0ee5815dd576054f.deb +Filename: pool/kubelet_1.21.5-00_amd64_9c6e5a746ca05d6fb56048c22cc8a50c1163b81a5062a183660568824d3b73d3.deb Priority: optional -SHA256: d579a0b18e07c3a78f9ec0e21514fb3ec83b30248b9f543f0ee5815dd576054f +SHA256: 9c6e5a746ca05d6fb56048c22cc8a50c1163b81a5062a183660568824d3b73d3 Section: misc -Size: 18211820 +Size: 18862368 Package: kubelet -Version: 1.19.1-00 -Installed-Size: 107410 +Version: 1.21.6-00 +Installed-Size: 115605 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.1-00_amd64_c0e40681b987aeecb1fdb9112ef3e561f35c5db00ce3339688ae357806a12f9c.deb +Filename: pool/kubelet_1.21.6-00_amd64_3277bdb850ea322b35230abcad5d3117d1bed678f3f9389ad6c44e2fbf08b793.deb Priority: optional -SHA256: c0e40681b987aeecb1fdb9112ef3e561f35c5db00ce3339688ae357806a12f9c +SHA256: 3277bdb850ea322b35230abcad5d3117d1bed678f3f9389ad6c44e2fbf08b793 Section: misc -Size: 18211976 +Size: 18870300 Package: kubelet -Version: 1.19.2-00 -Installed-Size: 107410 +Version: 1.21.7-00 +Installed-Size: 115629 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.2-00_amd64_fa43b848ed839e54df6d9b182e705b565947c4f5eac6ecdd0837ae7061886e0b.deb +Filename: pool/kubelet_1.21.7-00_amd64_7629b851d2e036c0bde7930d76d3ea098bbd3eceb8ca79b30c4fdbcc79f13856.deb Priority: optional -SHA256: fa43b848ed839e54df6d9b182e705b565947c4f5eac6ecdd0837ae7061886e0b +SHA256: 7629b851d2e036c0bde7930d76d3ea098bbd3eceb8ca79b30c4fdbcc79f13856 Section: misc -Size: 18218756 +Size: 18886096 Package: kubelet -Version: 1.19.3-00 -Installed-Size: 107442 +Version: 1.21.8-00 +Installed-Size: 115645 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.3-00_amd64_03a16e592ababd5fbd11dc5c90503f166340d0f87efd69315892151df20f0a6a.deb +Filename: pool/kubelet_1.21.8-00_amd64_f0babcf6338239ef8c9772c9c4bc8c4fe91cf76a4a9e829f957d3eb17be2c99d.deb Priority: optional -SHA256: 03a16e592ababd5fbd11dc5c90503f166340d0f87efd69315892151df20f0a6a +SHA256: f0babcf6338239ef8c9772c9c4bc8c4fe91cf76a4a9e829f957d3eb17be2c99d Section: misc -Size: 18208700 +Size: 18885236 Package: kubelet -Version: 1.19.4-00 -Installed-Size: 107451 +Version: 1.21.9-00 +Installed-Size: 115673 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.4-00_amd64_c1526178b77cc0ef6d4c7ec90457f710d305d32a521ce384520655ccc9f74503.deb +Filename: pool/kubelet_1.21.9-00_amd64_7eaa23a43d33952c4171212980954534c78348a25a9a91f0d4748c4d0ceaba0e.deb Priority: optional -SHA256: c1526178b77cc0ef6d4c7ec90457f710d305d32a521ce384520655ccc9f74503 +SHA256: 7eaa23a43d33952c4171212980954534c78348a25a9a91f0d4748c4d0ceaba0e Section: misc -Size: 18202152 +Size: 18886940 Package: kubelet -Version: 1.19.5-00 -Installed-Size: 107339 +Version: 1.21.10-00 +Installed-Size: 115673 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.5-00_amd64_d87b20825d6548366eaa115c842c9ff44afceb5334f81d5c1781d0a20870f9ca.deb +Filename: pool/kubelet_1.21.10-00_amd64_f2a867790653bd62330f6f5f516aa698320a6a86b8ab1221d9f05856fb4646f6.deb Priority: optional -SHA256: d87b20825d6548366eaa115c842c9ff44afceb5334f81d5c1781d0a20870f9ca +SHA256: f2a867790653bd62330f6f5f516aa698320a6a86b8ab1221d9f05856fb4646f6 Section: misc -Size: 18225068 +Size: 18886296 Package: kubelet -Version: 1.19.6-00 -Installed-Size: 107347 +Version: 1.21.11-00 +Installed-Size: 115693 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.6-00_amd64_5b57b709b0bf19ce60743a2e6544e008465f41cb0ced3c7fa41461d32ca95c09.deb +Filename: pool/kubelet_1.21.11-00_amd64_4505c13b0264a3178b4358f0d0e057647fffb9f725080623dd3d37907e51d206.deb Priority: optional -SHA256: 5b57b709b0bf19ce60743a2e6544e008465f41cb0ced3c7fa41461d32ca95c09 +SHA256: 4505c13b0264a3178b4358f0d0e057647fffb9f725080623dd3d37907e51d206 Section: misc -Size: 18213128 +Size: 18902632 Package: kubelet -Version: 1.19.7-00 -Installed-Size: 107375 +Version: 1.21.12-00 +Installed-Size: 115697 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.7-00_amd64_87f9e0b99bba70eaf2dfe7544125f2064a51c451329f336ae52e2770989fa287.deb +Filename: pool/kubelet_1.21.12-00_amd64_eb7c5018c65db4b6c2d1b1b6842b624cee2a2eae96eada7632e9825457f896f7.deb Priority: optional -SHA256: 87f9e0b99bba70eaf2dfe7544125f2064a51c451329f336ae52e2770989fa287 +SHA256: eb7c5018c65db4b6c2d1b1b6842b624cee2a2eae96eada7632e9825457f896f7 Section: misc -Size: 18224896 +Size: 18910500 Package: kubelet -Version: 1.19.8-00 -Installed-Size: 107475 +Version: 1.21.13-00 +Installed-Size: 115701 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.8-00_amd64_3f0ff130a2155827d7d4eb03b70a8dc83105946e0cd3c842f7bd154767c9fd8b.deb +Filename: pool/kubelet_1.21.13-00_amd64_497b8dd9cfaf260f59b77152cf2398d0ff755f8c3ccca5687e55fe0dc776ebd9.deb Priority: optional -SHA256: 3f0ff130a2155827d7d4eb03b70a8dc83105946e0cd3c842f7bd154767c9fd8b +SHA256: 497b8dd9cfaf260f59b77152cf2398d0ff755f8c3ccca5687e55fe0dc776ebd9 Section: misc -Size: 18226180 +Size: 18907044 Package: kubelet -Version: 1.19.9-00 -Installed-Size: 107471 +Version: 1.21.14-00 +Installed-Size: 115701 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.9-00_amd64_408e1ef27f15eea9f147ea63e1d848481ce1d614ad919122deb73ce337ecdedb.deb +Filename: pool/kubelet_1.21.14-00_amd64_40bf72e7d7ffa35c583215d166437d25cec2ac20eac05d92370750f264cee81a.deb Priority: optional -SHA256: 408e1ef27f15eea9f147ea63e1d848481ce1d614ad919122deb73ce337ecdedb +SHA256: 40bf72e7d7ffa35c583215d166437d25cec2ac20eac05d92370750f264cee81a Section: misc -Size: 18238584 +Size: 18896940 Package: kubelet -Version: 1.19.10-00 -Installed-Size: 107455 +Version: 1.22.0-00 +Installed-Size: 149761 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.10-00_amd64_f58d0e011dc6388fa51e189fabfe461d668148428106c4df95df744f0904db2c.deb +Filename: pool/kubelet_1.22.0-00_amd64_f3d15808d3ef2447260997f218ee1931963017aac977630a0295414788364d85.deb Priority: optional -SHA256: f58d0e011dc6388fa51e189fabfe461d668148428106c4df95df744f0904db2c +SHA256: f3d15808d3ef2447260997f218ee1931963017aac977630a0295414788364d85 Section: misc -Size: 18233624 +Size: 21870504 Package: kubelet -Version: 1.19.11-00 -Installed-Size: 107459 +Version: 1.22.1-00 +Installed-Size: 149769 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.11-00_amd64_74ac2726639c2ae6870b4968d2b33222cfc322aba251d838020c78ca7ac6c46b.deb +Filename: pool/kubelet_1.22.1-00_amd64_240cc59b5f8e44719af21b90161d32297679376f5a4d45ffd4795685ef305538.deb Priority: optional -SHA256: 74ac2726639c2ae6870b4968d2b33222cfc322aba251d838020c78ca7ac6c46b +SHA256: 240cc59b5f8e44719af21b90161d32297679376f5a4d45ffd4795685ef305538 Section: misc -Size: 18251772 +Size: 21791648 Package: kubelet -Version: 1.19.12-00 -Installed-Size: 107491 +Version: 1.22.2-00 +Installed-Size: 149769 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.12-00_amd64_cb1bf6b286d69170bb70400b22b09e6f15b575300bf2021c154114ce22a9e3a6.deb +Filename: pool/kubelet_1.22.2-00_amd64_9beb7eb761639af99129b6a1a0fb83d909106140a5b445cbe6737a48fbb5d7f5.deb Priority: optional -SHA256: cb1bf6b286d69170bb70400b22b09e6f15b575300bf2021c154114ce22a9e3a6 +SHA256: 9beb7eb761639af99129b6a1a0fb83d909106140a5b445cbe6737a48fbb5d7f5 Section: misc -Size: 18251788 +Size: 21865112 Package: kubelet -Version: 1.19.13-00 -Installed-Size: 107499 +Version: 1.22.3-00 +Installed-Size: 118354 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.13-00_amd64_c523ad0108c8d897a8f14d655a7e3ed2c067ff3ecd88b618213d278576c16510.deb +Filename: pool/kubelet_1.22.3-00_amd64_59638c5e6a1f6ffa59569efc8bd8bcdd00709dfdf5b11f209491cb30b9c546f5.deb Priority: optional -SHA256: c523ad0108c8d897a8f14d655a7e3ed2c067ff3ecd88b618213d278576c16510 +SHA256: 59638c5e6a1f6ffa59569efc8bd8bcdd00709dfdf5b11f209491cb30b9c546f5 Section: misc -Size: 18252024 +Size: 19131440 Package: kubelet -Version: 1.19.14-00 -Installed-Size: 107503 +Version: 1.22.4-00 +Installed-Size: 118366 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.14-00_amd64_0acfab317c19610c0b98920a9314a03893a04b6fd84d908949cb00810024929d.deb +Filename: pool/kubelet_1.22.4-00_amd64_947ff062f2ba903fdd0ef77749219e8b27ca9c56821f503ae58a18a253fef5e1.deb Priority: optional -SHA256: 0acfab317c19610c0b98920a9314a03893a04b6fd84d908949cb00810024929d +SHA256: 947ff062f2ba903fdd0ef77749219e8b27ca9c56821f503ae58a18a253fef5e1 Section: misc -Size: 18278116 +Size: 19126008 Package: kubelet -Version: 1.19.15-00 -Installed-Size: 107523 +Version: 1.22.5-00 +Installed-Size: 118386 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.15-00_amd64_caa882fa82b453d4f8a7e33a93bb9e7ed2c63c7a2040594760f93e50b59e0839.deb +Filename: pool/kubelet_1.22.5-00_amd64_06429fc2ea29181419b77c6b6472da50d4eb22877575838c3098a5a6ec4a461e.deb Priority: optional -SHA256: caa882fa82b453d4f8a7e33a93bb9e7ed2c63c7a2040594760f93e50b59e0839 +SHA256: 06429fc2ea29181419b77c6b6472da50d4eb22877575838c3098a5a6ec4a461e Section: misc -Size: 18251236 +Size: 19140416 Package: kubelet -Version: 1.19.16-00 -Installed-Size: 107547 +Version: 1.22.6-00 +Installed-Size: 118402 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.19.16-00_amd64_a5d729e1e5dbf0606bdec37db332196974a277e62adc8b3527a78f21a523fdb2.deb +Filename: pool/kubelet_1.22.6-00_amd64_70ed766c1dd245b979695be9850700fec0ac3fa1435a2a6ef318f5afa73ca4b1.deb Priority: optional -SHA256: a5d729e1e5dbf0606bdec37db332196974a277e62adc8b3527a78f21a523fdb2 +SHA256: 70ed766c1dd245b979695be9850700fec0ac3fa1435a2a6ef318f5afa73ca4b1 Section: misc -Size: 18262496 +Size: 19119068 Package: kubelet -Version: 1.20.0-00 -Installed-Size: 111316 +Version: 1.22.7-00 +Installed-Size: 118410 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.0-00_amd64_5083777e7ef63c6b6ad3b673790e55f3782ce36340a18e30761234c959b0f7e4.deb +Filename: pool/kubelet_1.22.7-00_amd64_65158c50fd8ff289417d5686a13945c55e9ac5e53f367fd45fc761b4b80b2f89.deb Priority: optional -SHA256: 5083777e7ef63c6b6ad3b673790e55f3782ce36340a18e30761234c959b0f7e4 +SHA256: 65158c50fd8ff289417d5686a13945c55e9ac5e53f367fd45fc761b4b80b2f89 Section: misc -Size: 18841708 +Size: 19134644 Package: kubelet -Version: 1.20.1-00 -Installed-Size: 111324 +Version: 1.22.8-00 +Installed-Size: 118422 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.1-00_amd64_560a52294b8b339e0ca8ddbc480218e93ebb01daef0446887803815bcd0c41eb.deb +Filename: pool/kubelet_1.22.8-00_amd64_bbd8a148a58133d12f300e12d254b7d2f5031c119092425dfa0eae8cc44449a7.deb Priority: optional -SHA256: 560a52294b8b339e0ca8ddbc480218e93ebb01daef0446887803815bcd0c41eb +SHA256: bbd8a148a58133d12f300e12d254b7d2f5031c119092425dfa0eae8cc44449a7 Section: misc -Size: 18859928 +Size: 19144096 Package: kubelet -Version: 1.20.2-00 -Installed-Size: 111356 +Version: 1.22.9-00 +Installed-Size: 118430 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.2-00_amd64_cc0be8c7d5b3bebc1fd34f46b62fd7d952c021fae356ff1d0904c55ddfcf6ea4.deb +Filename: pool/kubelet_1.22.9-00_amd64_00374c0830d95941ce633823f552b7a61823cff7e9aa35b7582aa59bb58d5fa5.deb Priority: optional -SHA256: cc0be8c7d5b3bebc1fd34f46b62fd7d952c021fae356ff1d0904c55ddfcf6ea4 +SHA256: 00374c0830d95941ce633823f552b7a61823cff7e9aa35b7582aa59bb58d5fa5 Section: misc -Size: 18859300 +Size: 19171040 Package: kubelet -Version: 1.20.4-00 -Installed-Size: 111452 +Version: 1.22.10-00 +Installed-Size: 118430 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.4-00_amd64_5b6c470dfcfe2c7c03517e9909896cc9ce837e3617d05002bc3af7f2ed504481.deb +Filename: pool/kubelet_1.22.10-00_amd64_1af4f1b9c580bba309881059c032d240cd9c4dc474102d2fadca292bb313f627.deb Priority: optional -SHA256: 5b6c470dfcfe2c7c03517e9909896cc9ce837e3617d05002bc3af7f2ed504481 +SHA256: 1af4f1b9c580bba309881059c032d240cd9c4dc474102d2fadca292bb313f627 Section: misc -Size: 18872292 +Size: 19150776 Package: kubelet -Version: 1.20.5-00 -Installed-Size: 111457 +Version: 1.22.11-00 +Installed-Size: 118438 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.5-00_amd64_8cff8958c09d721a6e1bc77c4c27d27daf96446e595c9c54aea3c45fe8c06d11.deb +Filename: pool/kubelet_1.22.11-00_amd64_b56f135abc6f9c22de6e1e7b93206ced4712f547f0f46a1d1c6e9cfca376833d.deb Priority: optional -SHA256: 8cff8958c09d721a6e1bc77c4c27d27daf96446e595c9c54aea3c45fe8c06d11 +SHA256: b56f135abc6f9c22de6e1e7b93206ced4712f547f0f46a1d1c6e9cfca376833d Section: misc -Size: 18890104 +Size: 19152684 Package: kubelet -Version: 1.20.6-00 -Installed-Size: 111429 +Version: 1.22.12-00 +Installed-Size: 118078 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.6-00_amd64_220ab4edcac51e77a4df7f6a0430bbd3c69ffe153eb4b9d1dd77c52e9c5c8497.deb +Filename: pool/kubelet_1.22.12-00_amd64_495bf24217d3764e2f7d091d131cfb33231ce8ae898538facac6e2b57e977aca.deb Priority: optional -SHA256: 220ab4edcac51e77a4df7f6a0430bbd3c69ffe153eb4b9d1dd77c52e9c5c8497 +SHA256: 495bf24217d3764e2f7d091d131cfb33231ce8ae898538facac6e2b57e977aca Section: misc -Size: 18876560 +Size: 19114832 Package: kubelet -Version: 1.20.7-00 -Installed-Size: 111437 +Version: 1.22.13-00 +Installed-Size: 118078 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.7-00_amd64_2b1ddde1f40f250ee4045adb07e4d12a43fc8e31f4411e9b3cea02d974435969.deb +Filename: pool/kubelet_1.22.13-00_amd64_37348ce03d98ac9bb55c0967eab95bb896c06857f6758e46c29aa798f63738ad.deb Priority: optional -SHA256: 2b1ddde1f40f250ee4045adb07e4d12a43fc8e31f4411e9b3cea02d974435969 +SHA256: 37348ce03d98ac9bb55c0967eab95bb896c06857f6758e46c29aa798f63738ad Section: misc -Size: 18867004 +Size: 19114980 Package: kubelet -Version: 1.20.8-00 -Installed-Size: 111473 +Version: 1.22.14-00 +Installed-Size: 118082 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.8-00_amd64_ce884d30b1dee50e94e9a2e4e4ac8dd1b67fd9682907345107fd0aa0149b6dd1.deb +Filename: pool/kubelet_1.22.14-00_amd64_8b49e7912fa621c047694a2151e424cf21414320e000950ef2d038c9f9a4c9ac.deb Priority: optional -SHA256: ce884d30b1dee50e94e9a2e4e4ac8dd1b67fd9682907345107fd0aa0149b6dd1 +SHA256: 8b49e7912fa621c047694a2151e424cf21414320e000950ef2d038c9f9a4c9ac Section: misc -Size: 18890580 +Size: 19115352 Package: kubelet -Version: 1.20.9-00 -Installed-Size: 111477 +Version: 1.22.15-00 +Installed-Size: 118082 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.9-00_amd64_9cd4f43c654a4ca72e3bc7f98499cd179bbfbbf2d70bd6904d25835a7602f07d.deb +Filename: pool/kubelet_1.22.15-00_amd64_f440f94b8d48c163e536420bc0553b4ec0c24f7443f0f8362d5f81c7ba3ac2a4.deb Priority: optional -SHA256: 9cd4f43c654a4ca72e3bc7f98499cd179bbfbbf2d70bd6904d25835a7602f07d +SHA256: f440f94b8d48c163e536420bc0553b4ec0c24f7443f0f8362d5f81c7ba3ac2a4 Section: misc -Size: 18884132 +Size: 19122848 Package: kubelet -Version: 1.20.10-00 -Installed-Size: 111485 +Version: 1.22.16-00 +Installed-Size: 118082 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.10-00_amd64_3a86122466ef619a60e6e81f2ed57fad76f5d2790c7742c811353b82ae749bb6.deb +Filename: pool/kubelet_1.22.16-00_amd64_f118809e2b66753cc2db66ada4e5ed533dd723be4d9c086aeb1e76dddc3818f8.deb Priority: optional -SHA256: 3a86122466ef619a60e6e81f2ed57fad76f5d2790c7742c811353b82ae749bb6 +SHA256: f118809e2b66753cc2db66ada4e5ed533dd723be4d9c086aeb1e76dddc3818f8 Section: misc -Size: 18887424 +Size: 19128984 Package: kubelet -Version: 1.20.11-00 -Installed-Size: 111489 +Version: 1.23.0-00 +Installed-Size: 121596 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.11-00_amd64_1bbe486b927d10ba9604ef620a903d8230650570966590cc9139b9c253b41e6e.deb +Filename: pool/kubelet_1.23.0-00_amd64_ce65b8a114007b4492fdb4447f829c055ab7757dcb3e4d973b94a02eb7fb7b19.deb Priority: optional -SHA256: 1bbe486b927d10ba9604ef620a903d8230650570966590cc9139b9c253b41e6e +SHA256: ce65b8a114007b4492fdb4447f829c055ab7757dcb3e4d973b94a02eb7fb7b19 Section: misc -Size: 18898608 +Size: 19480648 Package: kubelet -Version: 1.20.12-00 -Installed-Size: 111517 +Version: 1.23.1-00 +Installed-Size: 121608 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.12-00_amd64_c2919089a38ff7a3854e073cc25788db3a39885da650e983a66b6997b862fdd1.deb +Filename: pool/kubelet_1.23.1-00_amd64_4bb6c13d6a2cccc2c70f8c9bc5bc8daf519d2ea51cf33e8329fa355bada1a1d7.deb Priority: optional -SHA256: c2919089a38ff7a3854e073cc25788db3a39885da650e983a66b6997b862fdd1 +SHA256: 4bb6c13d6a2cccc2c70f8c9bc5bc8daf519d2ea51cf33e8329fa355bada1a1d7 Section: misc -Size: 18905276 +Size: 19474508 Package: kubelet -Version: 1.20.13-00 -Installed-Size: 111517 +Version: 1.23.2-00 +Installed-Size: 121608 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.13-00_amd64_1046bcadf98f29557e305e7a33b09cba9088f902848ca386ace4e1324269e759.deb +Filename: pool/kubelet_1.23.2-00_amd64_3345e062d849b2808b93a245a10ee12e55d60d69b8618ad039db5c7b0377444a.deb Priority: optional -SHA256: 1046bcadf98f29557e305e7a33b09cba9088f902848ca386ace4e1324269e759 +SHA256: 3345e062d849b2808b93a245a10ee12e55d60d69b8618ad039db5c7b0377444a Section: misc -Size: 18904508 +Size: 19486208 Package: kubelet -Version: 1.20.14-00 -Installed-Size: 111521 +Version: 1.23.3-00 +Installed-Size: 121616 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.14-00_amd64_ce68d54f6073f262820448d6750c2f5c098928ea567b6162a5ead852908eecc0.deb +Filename: pool/kubelet_1.23.3-00_amd64_cb611b7036b2979e2d97cec09ead8a456047718e5f22ec950b8616ca92ffc5c4.deb Priority: optional -SHA256: ce68d54f6073f262820448d6750c2f5c098928ea567b6162a5ead852908eecc0 +SHA256: cb611b7036b2979e2d97cec09ead8a456047718e5f22ec950b8616ca92ffc5c4 Section: misc -Size: 18904092 +Size: 19476112 Package: kubelet -Version: 1.20.15-00 -Installed-Size: 111525 +Version: 1.23.4-00 +Installed-Size: 121616 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.20.15-00_amd64_02e67343648454533e967ee2b19a2c4f2cae2b3b85d38bc9be1e589152ee082c.deb +Filename: pool/kubelet_1.23.4-00_amd64_980f695075569605bb36bc1879988fad9b4f894ab598195bfb325c1c73163be0.deb Priority: optional -SHA256: 02e67343648454533e967ee2b19a2c4f2cae2b3b85d38bc9be1e589152ee082c +SHA256: 980f695075569605bb36bc1879988fad9b4f894ab598195bfb325c1c73163be0 Section: misc -Size: 18907736 +Size: 19473116 Package: kubelet -Version: 1.21.0-00 -Installed-Size: 115309 +Version: 1.23.5-00 +Installed-Size: 121629 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.0-00_amd64_9c0d80dfc5d3a1d45605c0244a7126370b58b02b235cf9fefe0ed136ebe13cf3.deb +Filename: pool/kubelet_1.23.5-00_amd64_9679f0eb4bc40fe17110967eac853f0381f1fb7a29d319ed9b3c48592b83d7cd.deb Priority: optional -SHA256: 9c0d80dfc5d3a1d45605c0244a7126370b58b02b235cf9fefe0ed136ebe13cf3 +SHA256: 9679f0eb4bc40fe17110967eac853f0381f1fb7a29d319ed9b3c48592b83d7cd Section: misc -Size: 18786948 +Size: 19479732 Package: kubelet -Version: 1.21.1-00 -Installed-Size: 115329 +Version: 1.23.6-00 +Installed-Size: 121637 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.1-00_amd64_6dc375461a5680c2418c75062abe358453458b1d3ed4e0a4d9c59748d7fc5574.deb +Filename: pool/kubelet_1.23.6-00_amd64_16ac529ca7da63264c6f9f64f5296a605c98f029d7ace2ee1e0aeebd50c7e958.deb Priority: optional -SHA256: 6dc375461a5680c2418c75062abe358453458b1d3ed4e0a4d9c59748d7fc5574 +SHA256: 16ac529ca7da63264c6f9f64f5296a605c98f029d7ace2ee1e0aeebd50c7e958 Section: misc -Size: 18791044 +Size: 19484952 Package: kubelet -Version: 1.21.2-00 -Installed-Size: 115396 +Version: 1.23.7-00 +Installed-Size: 121637 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.2-00_amd64_c6901d0a0d7d32a3cb2b35210ea6d2a39be01679869859ba183611d947d8e07f.deb +Filename: pool/kubelet_1.23.7-00_amd64_66d2b32aae14788410053d02ab87f74f036c16e3c52fedb5731e8f50f0595a42.deb Priority: optional -SHA256: c6901d0a0d7d32a3cb2b35210ea6d2a39be01679869859ba183611d947d8e07f +SHA256: 66d2b32aae14788410053d02ab87f74f036c16e3c52fedb5731e8f50f0595a42 Section: misc -Size: 18814416 +Size: 19484232 Package: kubelet -Version: 1.21.3-00 -Installed-Size: 115396 +Version: 1.23.8-00 +Installed-Size: 121645 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.3-00_amd64_9469c24d587cd9ab749c0fd177b5c83b709d0952aa9a2c944fd363b7d0ef9118.deb +Filename: pool/kubelet_1.23.8-00_amd64_535b8f56ca47f1fcc2e2b4c77ed7dbe0b862b81161cbc1c9caf02e5858c7b180.deb Priority: optional -SHA256: 9469c24d587cd9ab749c0fd177b5c83b709d0952aa9a2c944fd363b7d0ef9118 +SHA256: 535b8f56ca47f1fcc2e2b4c77ed7dbe0b862b81161cbc1c9caf02e5858c7b180 Section: misc -Size: 18801004 +Size: 19486396 Package: kubelet -Version: 1.21.4-00 -Installed-Size: 115408 +Version: 1.23.9-00 +Installed-Size: 121285 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.4-00_amd64_8a9abc7719728ba932651c1ecadd114391d7c518ac4cf16313c946bd1fb10975.deb +Filename: pool/kubelet_1.23.9-00_amd64_d64b1fd6553b41a976e75eba590ff8f4326b705fe2a1657c86771ea1dbd0fcaf.deb Priority: optional -SHA256: 8a9abc7719728ba932651c1ecadd114391d7c518ac4cf16313c946bd1fb10975 +SHA256: d64b1fd6553b41a976e75eba590ff8f4326b705fe2a1657c86771ea1dbd0fcaf Section: misc -Size: 18803852 +Size: 19429332 Package: kubelet -Version: 1.21.5-00 -Installed-Size: 115593 +Version: 1.23.10-00 +Installed-Size: 121321 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.5-00_amd64_9c6e5a746ca05d6fb56048c22cc8a50c1163b81a5062a183660568824d3b73d3.deb +Filename: pool/kubelet_1.23.10-00_amd64_723dc233590b3746b020967e03ec72a20d86398613ecc0aad94e4f1426f7e2ff.deb Priority: optional -SHA256: 9c6e5a746ca05d6fb56048c22cc8a50c1163b81a5062a183660568824d3b73d3 +SHA256: 723dc233590b3746b020967e03ec72a20d86398613ecc0aad94e4f1426f7e2ff Section: misc -Size: 18862368 +Size: 19430000 Package: kubelet -Version: 1.21.6-00 -Installed-Size: 115605 +Version: 1.23.11-00 +Installed-Size: 121321 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.6-00_amd64_3277bdb850ea322b35230abcad5d3117d1bed678f3f9389ad6c44e2fbf08b793.deb +Filename: pool/kubelet_1.23.11-00_amd64_983a2f00d4090383ae22548b4e5792c6da6bd708fc4b0f83e7541d4f82115dad.deb Priority: optional -SHA256: 3277bdb850ea322b35230abcad5d3117d1bed678f3f9389ad6c44e2fbf08b793 +SHA256: 983a2f00d4090383ae22548b4e5792c6da6bd708fc4b0f83e7541d4f82115dad Section: misc -Size: 18870300 +Size: 19447860 Package: kubelet -Version: 1.21.7-00 -Installed-Size: 115629 +Version: 1.23.12-00 +Installed-Size: 121321 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.7-00_amd64_7629b851d2e036c0bde7930d76d3ea098bbd3eceb8ca79b30c4fdbcc79f13856.deb +Filename: pool/kubelet_1.23.12-00_amd64_d7ed6d7e744c9700b71a210f66373aede3b34742eacdd9d6310b23667368918e.deb Priority: optional -SHA256: 7629b851d2e036c0bde7930d76d3ea098bbd3eceb8ca79b30c4fdbcc79f13856 +SHA256: d7ed6d7e744c9700b71a210f66373aede3b34742eacdd9d6310b23667368918e Section: misc -Size: 18886096 +Size: 19457676 Package: kubelet -Version: 1.21.8-00 -Installed-Size: 115645 +Version: 1.23.13-00 +Installed-Size: 121321 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.8-00_amd64_f0babcf6338239ef8c9772c9c4bc8c4fe91cf76a4a9e829f957d3eb17be2c99d.deb +Filename: pool/kubelet_1.23.13-00_amd64_b482a2ae85220266c8d209ed5396e69cf3be9567d2e3a290fc96e7fceb663e79.deb Priority: optional -SHA256: f0babcf6338239ef8c9772c9c4bc8c4fe91cf76a4a9e829f957d3eb17be2c99d +SHA256: b482a2ae85220266c8d209ed5396e69cf3be9567d2e3a290fc96e7fceb663e79 Section: misc -Size: 18885236 +Size: 19424388 Package: kubelet -Version: 1.21.9-00 -Installed-Size: 115673 +Version: 1.23.14-00 +Installed-Size: 121329 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.9-00_amd64_7eaa23a43d33952c4171212980954534c78348a25a9a91f0d4748c4d0ceaba0e.deb +Filename: pool/kubelet_1.23.14-00_amd64_57a2b10c836c795266f474fe04b4086b64e7df412cd84ea20230719d6a3ca44a.deb Priority: optional -SHA256: 7eaa23a43d33952c4171212980954534c78348a25a9a91f0d4748c4d0ceaba0e +SHA256: 57a2b10c836c795266f474fe04b4086b64e7df412cd84ea20230719d6a3ca44a Section: misc -Size: 18886940 +Size: 19459944 Package: kubelet -Version: 1.21.10-00 -Installed-Size: 115673 +Version: 1.24.0-00 +Installed-Size: 113628 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.21.10-00_amd64_f2a867790653bd62330f6f5f516aa698320a6a86b8ab1221d9f05856fb4646f6.deb +Filename: pool/kubelet_1.24.0-00_amd64_fa7ead7e01cb26e7cb77c85e93393966841255b895a35dfae99ecb1f8b348c9f.deb Priority: optional -SHA256: f2a867790653bd62330f6f5f516aa698320a6a86b8ab1221d9f05856fb4646f6 +SHA256: fa7ead7e01cb26e7cb77c85e93393966841255b895a35dfae99ecb1f8b348c9f Section: misc -Size: 18886296 +Size: 19247176 Package: kubelet -Version: 1.22.0-00 -Installed-Size: 149761 +Version: 1.24.1-00 +Installed-Size: 113632 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.22.0-00_amd64_f3d15808d3ef2447260997f218ee1931963017aac977630a0295414788364d85.deb +Filename: pool/kubelet_1.24.1-00_amd64_1b9e8c261bb26178300b7f1996ea651d28a134be0327a23c3367617fdadb509d.deb Priority: optional -SHA256: f3d15808d3ef2447260997f218ee1931963017aac977630a0295414788364d85 +SHA256: 1b9e8c261bb26178300b7f1996ea651d28a134be0327a23c3367617fdadb509d Section: misc -Size: 21870504 +Size: 19257176 Package: kubelet -Version: 1.22.1-00 -Installed-Size: 149769 +Version: 1.24.2-00 +Installed-Size: 113640 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.22.1-00_amd64_240cc59b5f8e44719af21b90161d32297679376f5a4d45ffd4795685ef305538.deb +Filename: pool/kubelet_1.24.2-00_amd64_8b966a6dbe8d3f03e29e6a5db96dbcbae326b960ca1249d770b2919cd90ef703.deb Priority: optional -SHA256: 240cc59b5f8e44719af21b90161d32297679376f5a4d45ffd4795685ef305538 +SHA256: 8b966a6dbe8d3f03e29e6a5db96dbcbae326b960ca1249d770b2919cd90ef703 Section: misc -Size: 21791648 +Size: 19262428 Package: kubelet -Version: 1.22.2-00 -Installed-Size: 149769 +Version: 1.24.3-00 +Installed-Size: 113308 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.22.2-00_amd64_9beb7eb761639af99129b6a1a0fb83d909106140a5b445cbe6737a48fbb5d7f5.deb +Filename: pool/kubelet_1.24.3-00_amd64_8feffce5412ada057e92c18e15aa124e4cb81995b6c2225dfe11d6622e96cc5c.deb Priority: optional -SHA256: 9beb7eb761639af99129b6a1a0fb83d909106140a5b445cbe6737a48fbb5d7f5 +SHA256: 8feffce5412ada057e92c18e15aa124e4cb81995b6c2225dfe11d6622e96cc5c Section: misc -Size: 21865112 +Size: 19166028 Package: kubelet -Version: 1.22.3-00 -Installed-Size: 118354 +Version: 1.24.4-00 +Installed-Size: 113356 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.22.3-00_amd64_59638c5e6a1f6ffa59569efc8bd8bcdd00709dfdf5b11f209491cb30b9c546f5.deb +Filename: pool/kubelet_1.24.4-00_amd64_18f2db96b89c5e904d20a61aaafae5476c2470ffd73e1e094b9d01f429d82aaf.deb Priority: optional -SHA256: 59638c5e6a1f6ffa59569efc8bd8bcdd00709dfdf5b11f209491cb30b9c546f5 +SHA256: 18f2db96b89c5e904d20a61aaafae5476c2470ffd73e1e094b9d01f429d82aaf Section: misc -Size: 19131440 +Size: 19194832 Package: kubelet -Version: 1.22.4-00 -Installed-Size: 118366 +Version: 1.24.5-00 +Installed-Size: 113360 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.22.4-00_amd64_947ff062f2ba903fdd0ef77749219e8b27ca9c56821f503ae58a18a253fef5e1.deb +Filename: pool/kubelet_1.24.5-00_amd64_fdba498b58e6018284418ff8f5c0fbbd06f8eb14807ef037fc38b845e4bfc3ee.deb Priority: optional -SHA256: 947ff062f2ba903fdd0ef77749219e8b27ca9c56821f503ae58a18a253fef5e1 +SHA256: fdba498b58e6018284418ff8f5c0fbbd06f8eb14807ef037fc38b845e4bfc3ee Section: misc -Size: 19126008 +Size: 19192768 Package: kubelet -Version: 1.22.5-00 -Installed-Size: 118386 +Version: 1.24.6-00 +Installed-Size: 113360 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.22.5-00_amd64_06429fc2ea29181419b77c6b6472da50d4eb22877575838c3098a5a6ec4a461e.deb +Filename: pool/kubelet_1.24.6-00_amd64_69e775cef482547aca7fa4b3ea5eb1d0d5aca0517e32fb0d17fa1b8ba28ab724.deb Priority: optional -SHA256: 06429fc2ea29181419b77c6b6472da50d4eb22877575838c3098a5a6ec4a461e +SHA256: 69e775cef482547aca7fa4b3ea5eb1d0d5aca0517e32fb0d17fa1b8ba28ab724 Section: misc -Size: 19140416 +Size: 19207812 Package: kubelet -Version: 1.22.6-00 -Installed-Size: 118402 +Version: 1.24.7-00 +Installed-Size: 113368 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.22.6-00_amd64_70ed766c1dd245b979695be9850700fec0ac3fa1435a2a6ef318f5afa73ca4b1.deb +Filename: pool/kubelet_1.24.7-00_amd64_f934d7c98cfa026bb5b22cb368025155c7d187b08fcfb7461aefe37331eb376e.deb Priority: optional -SHA256: 70ed766c1dd245b979695be9850700fec0ac3fa1435a2a6ef318f5afa73ca4b1 +SHA256: f934d7c98cfa026bb5b22cb368025155c7d187b08fcfb7461aefe37331eb376e Section: misc -Size: 19119068 +Size: 19185320 Package: kubelet -Version: 1.22.7-00 -Installed-Size: 118410 +Version: 1.24.8-00 +Installed-Size: 113376 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.22.7-00_amd64_65158c50fd8ff289417d5686a13945c55e9ac5e53f367fd45fc761b4b80b2f89.deb +Filename: pool/kubelet_1.24.8-00_amd64_906c949a21f96f4e812d2782f2c535512a5d46c94c186d40c114f4442403095f.deb Priority: optional -SHA256: 65158c50fd8ff289417d5686a13945c55e9ac5e53f367fd45fc761b4b80b2f89 +SHA256: 906c949a21f96f4e812d2782f2c535512a5d46c94c186d40c114f4442403095f Section: misc -Size: 19134644 +Size: 19193280 Package: kubelet -Version: 1.23.0-00 -Installed-Size: 121596 +Version: 1.25.0-00 +Installed-Size: 111557 Maintainer: Kubernetes Authors Architecture: amd64 Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.23.0-00_amd64_ce65b8a114007b4492fdb4447f829c055ab7757dcb3e4d973b94a02eb7fb7b19.deb +Filename: pool/kubelet_1.25.0-00_amd64_8d1b6e0655b904a339df8e7e4a17d160095f50c984bb45bfb40e37d1d54d72aa.deb Priority: optional -SHA256: ce65b8a114007b4492fdb4447f829c055ab7757dcb3e4d973b94a02eb7fb7b19 +SHA256: 8d1b6e0655b904a339df8e7e4a17d160095f50c984bb45bfb40e37d1d54d72aa Section: misc -Size: 19480648 +Size: 19484044 Package: kubelet -Version: 1.23.1-00 -Installed-Size: 121608 +Version: 1.25.1-00 +Installed-Size: 111565 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.23.1-00_amd64_4bb6c13d6a2cccc2c70f8c9bc5bc8daf519d2ea51cf33e8329fa355bada1a1d7.deb +Filename: pool/kubelet_1.25.1-00_amd64_95cf4afcbde81fb9441217dd030cca2d7739f400b01b616d55cc5a1c98343c3e.deb Priority: optional -SHA256: 4bb6c13d6a2cccc2c70f8c9bc5bc8daf519d2ea51cf33e8329fa355bada1a1d7 +SHA256: 95cf4afcbde81fb9441217dd030cca2d7739f400b01b616d55cc5a1c98343c3e Section: misc -Size: 19474508 +Size: 19482972 Package: kubelet -Version: 1.23.2-00 -Installed-Size: 121608 +Version: 1.25.2-00 +Installed-Size: 111565 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.23.2-00_amd64_3345e062d849b2808b93a245a10ee12e55d60d69b8618ad039db5c7b0377444a.deb +Filename: pool/kubelet_1.25.2-00_amd64_19b51b4b7b3748163bb4305d1684bb69ccc5b5ad0a24694cf045e6a97ffbb815.deb Priority: optional -SHA256: 3345e062d849b2808b93a245a10ee12e55d60d69b8618ad039db5c7b0377444a +SHA256: 19b51b4b7b3748163bb4305d1684bb69ccc5b5ad0a24694cf045e6a97ffbb815 Section: misc -Size: 19486208 +Size: 19469368 Package: kubelet -Version: 1.23.3-00 -Installed-Size: 121616 +Version: 1.25.3-00 +Installed-Size: 111574 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.23.3-00_amd64_cb611b7036b2979e2d97cec09ead8a456047718e5f22ec950b8616ca92ffc5c4.deb +Filename: pool/kubelet_1.25.3-00_amd64_ffae0566c3dbedce376cd10355830f2d17d0f21bd9b2b09c9befcf7d7664aa44.deb Priority: optional -SHA256: cb611b7036b2979e2d97cec09ead8a456047718e5f22ec950b8616ca92ffc5c4 +SHA256: ffae0566c3dbedce376cd10355830f2d17d0f21bd9b2b09c9befcf7d7664aa44 Section: misc -Size: 19476112 +Size: 19479924 Package: kubelet -Version: 1.23.4-00 -Installed-Size: 121616 +Version: 1.25.4-00 +Installed-Size: 111574 Maintainer: Kubernetes Authors Architecture: amd64 -Depends: iptables (>= 1.4.21), kubernetes-cni (>= 0.8.7), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack +Depends: iptables (>= 1.4.21), kubernetes-cni (>= 1.1.1), iproute2, socat, util-linux, mount, ebtables, ethtool, conntrack Description: Kubernetes Node Agent The node agent of Kubernetes, the container cluster manager Homepage: https://kubernetes.io -Filename: pool/kubelet_1.23.4-00_amd64_980f695075569605bb36bc1879988fad9b4f894ab598195bfb325c1c73163be0.deb +Filename: pool/kubelet_1.25.4-00_amd64_6a1a7a0684026b381900d72ad7151061925d2afac2467ef1df9e0cc3420f8ef0.deb Priority: optional -SHA256: 980f695075569605bb36bc1879988fad9b4f894ab598195bfb325c1c73163be0 +SHA256: 6a1a7a0684026b381900d72ad7151061925d2afac2467ef1df9e0cc3420f8ef0 Section: misc -Size: 19473116 +Size: 19491976 Package: kubernetes-cni Version: 0.3.0.1-07a8a2-00 @@ -11519,6 +13203,20 @@ SHA256: ca2303ea0eecadf379c65bad855f9ad7c95c16502c0e7b3d50edcb53403c500f Section: misc Size: 24995436 +Package: kubernetes-cni +Version: 1.1.1-00 +Installed-Size: 70475 +Maintainer: Kubernetes Authors +Architecture: amd64 +Description: Kubernetes CNI + The binaries required to provision container networking +Homepage: https://kubernetes.io +Filename: pool/kubernetes-cni_1.1.1-00_amd64_910d5920eab8d7cf9a66cc4b0faf998fb3ee909bd6ee0bd7d1c6605b6a82f98f.deb +Priority: optional +SHA256: 910d5920eab8d7cf9a66cc4b0faf998fb3ee909bd6ee0bd7d1c6605b6a82f98f +Section: misc +Size: 24995692 + Package: rkt Version: 1.25.0-1 Installed-Size: 120147 @@ -11602,4 +13300,4 @@ Priority: extra SHA256: ea87d719359030f33fd48890875c934135c62eccda72c37d79ff604307b905b5 Section: utils Size: 107078660 -Vendor: CoreOS, Inc. +Vendor: CoreOS, Inc. \ No newline at end of file diff --git a/terraform/TEMPLATES/_calico_hostnames.html b/terraform/TEMPLATES/_calico_hostnames.html new file mode 100644 index 00000000..cac08a17 --- /dev/null +++ b/terraform/TEMPLATES/_calico_hostnames.html @@ -0,0 +1,9 @@ + + +
+ + {%for h in hostnames %} + + {%endfor%} + +
\ No newline at end of file diff --git a/terraform/TEMPLATES/calico_nodes.html b/terraform/TEMPLATES/calico_nodes.html index 394c816d..25e44be1 100755 --- a/terraform/TEMPLATES/calico_nodes.html +++ b/terraform/TEMPLATES/calico_nodes.html @@ -11,35 +11,9 @@ - -
+
@@ -54,10 +28,20 @@
-
+ + +
+
+
+
+ +
+
+
+

K8s Cluster Topology

@@ -79,7 +63,7 @@

K8s Cluster Topology

-
+ {% include "_calico_hostnames.html" %}
@@ -99,7 +83,7 @@

K8s Cluster Topology

- +
@@ -107,8 +91,12 @@

K8s Cluster Topology

@@ -142,28 +130,9 @@

K8s Cluster Topology

- - - -
- +
- diff --git a/terraform/TEMPLATES/cluster.html b/terraform/TEMPLATES/cluster.html index e3fe00cd..55d84fdb 100755 --- a/terraform/TEMPLATES/cluster.html +++ b/terraform/TEMPLATES/cluster.html @@ -32,7 +32,7 @@ - {{ turbo() }} + {{ turbo(url=url_for('static', filename='assets/js/turbo.es2017-umd.js')) }} NKT - Cluster @@ -41,35 +41,9 @@ href="{{ url_for('static',filename='assets/cui-2.0.0/css/cui-standard.min.css') }}"> - - +
@@ -92,34 +66,45 @@
-
+ + +
+
+
+
+
- - -
-
+
+ +

K8s Cluster Details

-
Here you should insert the K8s cluster details.
- Internet Access: If you do not have internet access you MUST use the provided VM template.
- No binaries nor images are pulled from the internet as they are pre-pulled and pre-installed.
- This only works for the default image versions and result in a faster cluster bring up.
- If you want to use your own template or specific image version then Internet access is required.
+ Here you should insert the K8s cluster details. +
Internet Access: +

    +
  • If you do not have internet access you MUST use the provided VM template: + No binaries nor images are pulled from the internet as they are pre-pulled and pre-installed. + This only works for the default image versions and result in a faster cluster bring up. + If you want to use your own template or specific image version then Internet access is required.
  • +
  • If you are deploying bare metal nodes you must have internet access or the installtion will fail +

-
+