Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

35,437

Downloads of v 1.13.0-rc2:

211

Last Update:

17 Dec 2018

Package Maintainer(s):

Software Author(s):

  • Google

Tags:

kubernetes kubectl kubefed kubelet kube-proxy

kubernetes-node

This is a prerelease version of kubernetes-node.

  • 1
  • 2
  • 3

1.13.0-rc2 | Updated: 17 Dec 2018

Downloads:

35,437

Downloads of v 1.13.0-rc2:

211

Maintainer(s):

Software Author(s):

  • Google

kubernetes-node 1.13.0-rc2

This is a prerelease version of kubernetes-node.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install kubernetes-node, run the following command from the command line or from PowerShell:

>

To upgrade kubernetes-node, run the following command from the command line or from PowerShell:

>

To uninstall kubernetes-node, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade kubernetes-node -y --source="'INTERNAL REPO URL'" --version="'1.13.0-rc2'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade kubernetes-node -y --source="'INTERNAL REPO URL'" --version="'1.13.0-rc2'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install kubernetes-node
  win_chocolatey:
    name: kubernetes-node
    version: '1.13.0-rc2'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'kubernetes-node' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.13.0-rc2'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller kubernetes-node
{
    Name        = "kubernetes-node"
    Version     = "1.13.0-rc2"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'kubernetes-node':
  ensure          => '1.13.0-rc2',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

Kubernetes is an open source system for managing [containerized applications]
across multiple hosts, providing basic mechanisms for deployment, maintenance,
and scaling of applications.

Kubernetes builds upon a decade and a half of experience at Google running
production workloads at scale using a system called [Borg],
combined with best-of-breed ideas and practices from the community.

Kubernetes is hosted by the Cloud Native Computing Foundation ([CNCF]).
If you are a company that wants to help shape the evolution of
technologies that are container-packaged, dynamically-scheduled
and microservices-oriented, consider joining the CNCF.
For details about who's involved and how Kubernetes plays a role,
read the CNCF [announcement].

Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors


$packageName= 'kubernetes-node' # arbitrary name for the package, used in messages
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$unzipDir = "$(Join-Path $toolsDir temp)"
$url64      = 'https://dl.k8s.io/v1.13.0-rc.2/kubernetes-node-windows-amd64.tar.gz' # 64bit URL here (HTTPS preferred) or remove - if installer contains both (very rare), use $url

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $unzipDir
  url64bit      = $url64
  checksum64    = '8a3a71d142b99fb200c4c1c9c0fa4dc6a3b64a0b506dc37dc3d832a94a791619a09ae4b2c6f73802f6833234570633974547f7700c8bb6de71d91ba2c4ac4b54'
  checksumType64= 'sha256' #default is checksumType
}

Install-ChocolateyZipPackage @packageArgs # https://chocolatey.org/docs/helpers-install-chocolatey-zip-package
Get-ChocolateyUnzip -PackageName "$packageName" -FileFullPath "$unzipDir" -Destination "$toolsDir"
tools\chocolateyinstall.ps1.template
$ErrorActionPreference = 'Stop'; # stop on all errors

#Items that could be replaced based on what you call chocopkgup.exe with
#{{PackageName}} - Package Name (should be same as nuspec file and folder) |/p
#{{PackageVersion}} - The updated version | /v
#{{DownloadUrl}} - The url for the native file | /u
#{{PackageFilePath}} - Downloaded file if including it in package | /pp
#{{PackageGuid}} - This will be used later | /pg
#{{DownloadUrlx64}} - The 64-bit url for the native file | /u64
#{{Checksum}} - The checksum for the url | /c
#{{Checksumx64}} - The checksum for the 64-bit url | /c64
#{{ChecksumType}} - The checksum type for the url | /ct
#{{ChecksumTypex64}} - The checksum type for the 64-bit url | /ct64

$packageName= '{{PackageName}}' # arbitrary name for the package, used in messages
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$unzipDir = "$(Join-Path $toolsDir temp)"
$url64      = '{{DownloadUrlx64}}' # 64bit URL here (HTTPS preferred) or remove - if installer contains both (very rare), use $url

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $unzipDir
  url64bit      = $url64
  checksum64    = '{{Checksumx64}}'
  checksumType64= 'sha256' #default is checksumType
}

Install-ChocolateyZipPackage @packageArgs # https://chocolatey.org/docs/helpers-install-chocolatey-zip-package
Get-ChocolateyUnzip -PackageName "$packageName" -FileFullPath "$unzipDir" -Destination "$toolsDir"
tools\LICENSE.txt
MIT License

Copyright (c) 2017 Cryowatt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
kubernetes-node 1.14.0-rc1 302 Thursday, May 16, 2019 Exempted
kubernetes-node 1.14.0-beta2 199 Thursday, May 16, 2019 Exempted
kubernetes-node 1.14.0-beta1 189 Thursday, May 16, 2019 Exempted
kubernetes-node 1.14.0-alpha3 186 Thursday, May 16, 2019 Exempted
kubernetes-node 1.14.0-alpha2 196 Thursday, May 16, 2019 Exempted
kubernetes-node 1.14.0-alpha1 170 Thursday, May 16, 2019 Exempted
kubernetes-node 1.13.0-rc2 211 Monday, December 17, 2018 Exempted
kubernetes-node 1.13.0-rc1 208 Monday, December 17, 2018 Exempted
kubernetes-node 1.13.0-beta2 212 Monday, December 17, 2018 Exempted
kubernetes-node 1.13.0-beta1 199 Monday, December 17, 2018 Exempted
kubernetes-node 1.13.0-alpha3 245 Monday, December 17, 2018 Exempted
kubernetes-node 1.13.0-alpha2 208 Monday, December 17, 2018 Exempted
kubernetes-node 1.13.0-alpha1 217 Monday, December 17, 2018 Exempted
kubernetes-node 1.12.0-rc2 223 Sunday, November 4, 2018 Approved
kubernetes-node 1.12.0-rc1 191 Sunday, November 4, 2018 Approved
kubernetes-node 1.12.0-beta2 191 Sunday, November 4, 2018 Approved
kubernetes-node 1.12.0-beta1 197 Sunday, November 4, 2018 Approved
kubernetes-node 1.12.0-alpha1 227 Sunday, November 4, 2018 Approved
kubernetes-node 1.11.2 346 Thursday, August 9, 2018 Approved
kubernetes-node 1.11.1 244 Thursday, August 9, 2018 Approved
kubernetes-node 1.11.0 278 Tuesday, July 10, 2018 Approved
kubernetes-node 1.11.0-rc3 222 Tuesday, July 10, 2018 Approved
kubernetes-node 1.11.0-rc2 269 Tuesday, July 10, 2018 Approved
kubernetes-node 1.11.0-rc1 245 Tuesday, July 10, 2018 Approved
kubernetes-node 1.11.0-beta2 250 Tuesday, July 10, 2018 Approved
kubernetes-node 1.11.0-beta1 266 Tuesday, July 10, 2018 Approved
kubernetes-node 1.11.0-alpha2 245 Tuesday, July 10, 2018 Approved
kubernetes-node 1.11.0-alpha1 239 Tuesday, July 10, 2018 Approved
kubernetes-node 1.10.8 211 Monday, October 8, 2018 Approved
kubernetes-node 1.10.7 190 Monday, October 8, 2018 Approved
kubernetes-node 1.10.6 233 Thursday, August 9, 2018 Approved
kubernetes-node 1.10.5 254 Tuesday, July 10, 2018 Approved
kubernetes-node 1.10.4 234 Tuesday, July 10, 2018 Approved
kubernetes-node 1.10.3 247 Tuesday, July 10, 2018 Approved
kubernetes-node 1.10.2 354 Tuesday, May 8, 2018 Approved
kubernetes-node 1.10.1 276 Tuesday, May 8, 2018 Approved
kubernetes-node 1.10.0 405 Thursday, April 5, 2018 Approved
kubernetes-node 1.10.0-rc1 305 Thursday, April 5, 2018 Approved
kubernetes-node 1.10.0-beta4 288 Thursday, April 5, 2018 Approved
kubernetes-node 1.10.0-beta3 280 Thursday, April 5, 2018 Approved
kubernetes-node 1.10.0-beta2 280 Thursday, April 5, 2018 Approved
kubernetes-node 1.10.0-beta1 270 Thursday, April 5, 2018 Approved
kubernetes-node 1.10.0-alpha3 331 Monday, February 12, 2018 Approved
kubernetes-node 1.10.0-alpha2 284 Thursday, February 1, 2018 Approved
kubernetes-node 1.10.0-alpha1 307 Thursday, February 1, 2018 Approved
kubernetes-node 1.9.10 186 Monday, October 8, 2018 Approved
kubernetes-node 1.9.9 212 Tuesday, July 10, 2018 Approved
kubernetes-node 1.9.8 213 Tuesday, July 10, 2018 Approved
kubernetes-node 1.9.7 236 Tuesday, May 8, 2018 Approved
kubernetes-node 1.9.6 239 Thursday, April 5, 2018 Approved
kubernetes-node 1.9.5 260 Thursday, April 5, 2018 Approved
kubernetes-node 1.9.4 236 Thursday, April 5, 2018 Approved
kubernetes-node 1.9.3 351 Monday, February 12, 2018 Approved
kubernetes-node 1.9.2 317 Thursday, February 1, 2018 Approved
kubernetes-node 1.9.1 342 Thursday, February 1, 2018 Approved
kubernetes-node 1.9.0 284 Thursday, February 1, 2018 Approved
kubernetes-node 1.9.0-beta2 302 Tuesday, December 12, 2017 Approved
kubernetes-node 1.9.0-beta1 308 Tuesday, December 12, 2017 Approved
kubernetes-node 1.9.0-alpha3 294 Tuesday, December 12, 2017 Approved
kubernetes-node 1.9.0-alpha2 285 Tuesday, December 12, 2017 Approved
kubernetes-node 1.9.0-alpha1 293 Tuesday, December 12, 2017 Approved
kubernetes-node 1.8.15 158 Monday, October 8, 2018 Approved
kubernetes-node 1.8.14 215 Tuesday, July 10, 2018 Approved
kubernetes-node 1.8.13 211 Tuesday, July 10, 2018 Approved
kubernetes-node 1.8.12 225 Tuesday, May 8, 2018 Approved
kubernetes-node 1.8.11 223 Tuesday, May 8, 2018 Approved
kubernetes-node 1.8.10 257 Thursday, April 5, 2018 Approved
kubernetes-node 1.8.9 257 Thursday, April 5, 2018 Approved
kubernetes-node 1.8.8 285 Monday, February 12, 2018 Approved
kubernetes-node 1.8.7 282 Thursday, February 1, 2018 Approved
kubernetes-node 1.8.6 257 Thursday, February 1, 2018 Approved
kubernetes-node 1.8.5 342 Tuesday, December 12, 2017 Approved
kubernetes-node 1.8.4 289 Tuesday, December 12, 2017 Approved
kubernetes-node 1.8.3 284 Tuesday, December 12, 2017 Approved
kubernetes-node 1.8.2 310 Tuesday, December 12, 2017 Approved
kubernetes-node 1.8.1 352 Tuesday, December 12, 2017 Approved
kubernetes-node 1.8.0 282 Tuesday, December 12, 2017 Approved
kubernetes-node 1.8.0-rc1 288 Tuesday, December 12, 2017 Approved
Kubernetes Node 1.8.0-beta1 326 Tuesday, September 12, 2017 Exempted
Kubernetes Node 1.8.0-alpha3 304 Tuesday, September 12, 2017 Exempted
Kubernetes Node 1.8.0-alpha2 320 Tuesday, September 12, 2017 Exempted
Kubernetes Node 1.8.0-alpha1 370 Tuesday, June 20, 2017 Exempted
kubernetes-node 1.7.16 236 Thursday, April 5, 2018 Approved
kubernetes-node 1.7.15 251 Thursday, April 5, 2018 Approved
kubernetes-node 1.7.14 229 Thursday, April 5, 2018 Approved
kubernetes-node 1.7.13 270 Thursday, April 5, 2018 Approved
kubernetes-node 1.7.12 267 Thursday, April 5, 2018 Approved
kubernetes-node 1.7.11 297 Tuesday, December 12, 2017 Approved
kubernetes-node 1.7.10 272 Tuesday, December 12, 2017 Approved
kubernetes-node 1.7.9 294 Tuesday, December 12, 2017 Approved
kubernetes-node 1.7.8 289 Tuesday, December 12, 2017 Approved
kubernetes-node 1.7.7 256 Tuesday, December 12, 2017 Approved
kubernetes-node 1.7.6 299 Tuesday, December 12, 2017 Approved
Kubernetes Node 1.7.5 358 Tuesday, September 12, 2017 Approved
Kubernetes Node 1.7.4 276 Tuesday, September 12, 2017 Approved
Kubernetes Node 1.7.3 324 Tuesday, September 12, 2017 Approved
Kubernetes Node 1.7.2 291 Tuesday, September 12, 2017 Approved
Kubernetes Node 1.7.1 316 Tuesday, September 12, 2017 Approved
Kubernetes Node 1.7.0-rc1 334 Tuesday, September 12, 2017 Exempted
Kubernetes Node 1.7.0-beta2 343 Tuesday, June 20, 2017 Exempted
Kubernetes Node 1.7.0-beta1 288 Tuesday, June 20, 2017 Exempted
kubernetes-node 1.7.0-alpha4 363 Friday, June 2, 2017 Exempted
kubernetes-node 1.7.0-alpha3 343 Friday, June 2, 2017 Exempted
kubernetes-node 1.6.13 277 Tuesday, December 12, 2017 Approved
kubernetes-node 1.6.12 272 Tuesday, December 12, 2017 Approved
kubernetes-node 1.6.11 258 Tuesday, December 12, 2017 Approved
kubernetes-node 1.6.10 172 Monday, October 8, 2018 Approved
Kubernetes Node 1.6.9 322 Tuesday, September 12, 2017 Approved
Kubernetes Node 1.6.8 267 Tuesday, September 12, 2017 Approved
Kubernetes Node 1.6.7 303 Tuesday, September 12, 2017 Approved
Kubernetes Node 1.6.6 325 Tuesday, June 20, 2017 Approved
Kubernetes Node 1.6.5 331 Tuesday, June 20, 2017 Approved
Kubernetes Node 1.6.4 308 Tuesday, June 20, 2017 Approved
Kubernetes Node 1.6.3 329 Tuesday, June 20, 2017 Approved
kubernetes-node 1.5.8 181 Monday, October 8, 2018 Approved
Kubernetes Node 1.5.7 333 Tuesday, June 20, 2017 Approved
Kubernetes Node 1.5.3 324 Tuesday, June 20, 2017 Approved

This package has no dependencies.

Discussion for the kubernetes-node Package

Ground Rules:

  • This discussion is only about kubernetes-node and the kubernetes-node package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or kubernetes-node, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus