Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
6,371
Downloads of v 0.16.3:
469
Last Update:
10 Dec 2020
Package Maintainer(s):
Software Author(s):
- VMware Tanzu
Tags:
octant kubernetes kubectl heptio dashboard pod tanzu
Octant
Downloads:
6,371
Downloads of v 0.16.3:
469
Maintainer(s):
Software Author(s):
- VMware Tanzu
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
All Checks are Passing
2 Passing Test
To install Octant, run the following command from the command line or from PowerShell:
To upgrade Octant, run the following command from the command line or from PowerShell:
To uninstall Octant, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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://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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download octant --internalize --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade octant -y --source="'STEP 3 URL'" [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 octant -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure octant installed
win_chocolatey:
name: octant
state: present
version: 0.16.3
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'octant' do
action :install
version '0.16.3'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: octant,
Version: 0.16.3,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller octant
{
Name = 'octant'
Ensure = 'Present'
Version = '0.16.3'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'octant':
provider => 'chocolatey',
ensure => '0.16.3',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install octant version="0.16.3" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 11 Dec 2020.
Octant is a tool for developers to understand how applications run on a Kubernetes cluster. It aims to be part of the developer's toolkit for gaining insight and approaching complexity found in Kubernetes. Octant offers a combination of introspective tooling, cluster navigation, and object management along with a plugin system to further extend its capabilities.
Features
Resource Viewer
Graphically visualizate relationships between objects in a Kubernetes cluster. The status of individual objects are represented by color to show workload performance.
Summary View
Consolidated status and configuration information in a single page aggregated from output typically found using multiple kubectl commands.
Port Forward
Forward a local port to a running pod with a single button for debugging applications and even port forward multiple pods across namespaces.
Log Stream
View log streams of pod and container activity for troubleshooting or monitoring without holding multiple terminals open.
Label Filter
Organize workloads with label filtering for inspecting clusters with a high volume of objects in a namespace.
Cluster Navigation
Easily change between namespaces or contexts across different clusters. Multiple kubeconfig files are also supported.
Plugin System
Highly extensible plugin system for users to provide additional functionality through gRPC. Plugin authors can add components on top of existing views.
$ErrorActionPreference = 'Stop';
$packageName = 'octant'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64 = 'https://github.com/vmware-tanzu/octant/releases/download/v0.16.3/octant_0.16.3_Windows-64bit.zip'
$checksum64 = '15bafbb6354257102c51478dda889eefa7676c60ea291b2756911a5fcb2e1f71'
$checksumType64= 'sha256'
$packageArgs = @{
packageName = $packageName
unzipLocation = $toolsDir
url64bit = $url64
softwareName = 'octant*'
checksum64 = $checksum64
checksumType64= 'sha256'
}
Install-ChocolateyZipPackage @packageArgs
Log in or click on link to see number of positives.
- octant.0.16.3.nupkg (96daf46f659a) - ## / 64
- octant_0.16.3_Windows-64bit.zip (15bafbb63542) - ## / 63
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Octant 0.16.3 | 469 | Thursday, December 10, 2020 | Approved |
Octant 0.16.1 | 758 | Thursday, October 8, 2020 | Approved |
Octant 0.16.0 | 240 | Thursday, September 24, 2020 | Approved |
Octant 0.15.0 | 548 | Wednesday, August 12, 2020 | Approved |
Octant 0.14.1 | 333 | Tuesday, July 21, 2020 | Approved |
Octant 0.14.0 | 128 | Friday, July 17, 2020 | Approved |
Octant 0.13.1 | 469 | Wednesday, June 3, 2020 | Approved |
Octant 0.13.0 | 110 | Monday, June 1, 2020 | Approved |
Octant 0.11.1 | 783 | Monday, March 30, 2020 | Approved |
Octant 0.11.0 | 148 | Sunday, March 22, 2020 | Approved |
Octant 0.10.2 | 380 | Saturday, February 15, 2020 | Approved |
Octant 0.10.0 | 39 | Tuesday, January 28, 2020 | Approved |
Octant 0.9.1 | 498 | Wednesday, December 18, 2019 | Approved |
Octant 0.9.0 | 56 | Wednesday, December 18, 2019 | Approved |
Octant 0.8.0 | 491 | Tuesday, October 15, 2019 | Approved |
Octant 0.7.0 | 68 | Tuesday, October 15, 2019 | Approved |
Octant 0.6.0 | 525 | Wednesday, August 21, 2019 | Approved |
Octant 0.5.1 | 143 | Wednesday, August 7, 2019 | Approved |
Octant 0.5.0 | 95 | Wednesday, August 7, 2019 | Approved |
Octant 0.4.0 | 90 | Wednesday, August 7, 2019 | Approved |
Release notes are available at https://github.com/vmware-tanzu/octant/releases
This package has no dependencies.
Ground Rules:
- This discussion is only about Octant and the Octant 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 Octant, 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.