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

Juju

This is not the latest version of Juju available.

  • 1
  • 2
  • 3

2.0.2 | Updated: 15 Nov 2016

Downloads:

43,988

Downloads of v 2.0.2:

393

Software Author(s):

  • Canonical Ltd.

Juju 2.0.2

This is not the latest version of Juju available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Canonical Ltd. The inclusion of Canonical Ltd. trademark(s), if any, upon this webpage is solely to identify Canonical Ltd. goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Juju, run the following command from the command line or from PowerShell:

>

To upgrade Juju, run the following command from the command line or from PowerShell:

>

To uninstall Juju, 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 juju -y --source="'INTERNAL REPO URL'" --version="'2.0.2'" [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 juju -y --source="'INTERNAL REPO URL'" --version="'2.0.2'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install juju
  win_chocolatey:
    name: juju
    version: '2.0.2'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'juju' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.0.2'
end

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


cChocoPackageInstaller juju
{
    Name     = "juju"
    Version  = "2.0.2"
    Source   = "INTERNAL REPO URL"
}

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


package { 'juju':
  ensure   => '2.0.2',
  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.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved by moderator flcdrg on 21 Nov 2016.

Description

The Canonical Distribution of Kubernetes works across all major public clouds and private infrastructure,
enabling your teams to operate Kubernetes clusters on demand, anywhere.

Juju is an application and service modelling tool that enables you to quickly model, configure,
deploy and manage applications in the cloud with only a few commands.
Use it to deploy hundreds of preconfigured services, OpenStack, or your own code to any public or private cloud.

Created by the people behind Ubuntu


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$packageArgs = @{
  packageName   = 'juju'
  fileType      = 'exe'
  softwareName  = 'Juju'

  checksum      = '22224346ce7e81cb406502c7307925a4fc6a0d8977305b134cd4090efd88a2a2'
  checksumType  = 'sha256'
  url           = 'https://launchpad.net/juju/2.0/2.0.2/+download/juju-setup-2.0.2-signed.exe'

  silentArgs    = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
  validExitCodes= @(0)
}

Install-ChocolateyPackage @packageArgs
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'juju'

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName 'Juju'

if ($key.Count -eq 1) {
  $key | % {
    $packageArgs = @{
	  packageName = $packageName
	  fileType    = 'exe'
	  silentArgs  = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
	  validExitCodes= @(0)
	  file          = "$($_.UninstallString.Trim('"'))"
	}

    Uninstall-ChocolateyPackage @packageArgs
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $_.DisplayName"}
}

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
Juju 3.3.0-beta1 134 Thursday, September 7, 2023 Approved
Juju 3.2.2 77 Thursday, September 7, 2023 Approved
Juju 3.2.0 146 Friday, May 26, 2023 Approved
Juju 3.1.6 609 Thursday, October 5, 2023 Approved
Juju 3.1.5 81 Tuesday, June 27, 2023 Approved
Juju 3.1.2 81 Friday, May 26, 2023 Approved
Juju 3.1.0 153 Monday, February 6, 2023 Approved
Juju 3.0.3 88 Thursday, February 16, 2023 Approved
Juju 3.0.2 108 Thursday, December 1, 2022 Approved
Juju 3.0.0 123 Saturday, October 22, 2022 Approved
Juju 2.9.38 109 Tuesday, January 17, 2023 Approved
Juju 2.9.37 106 Tuesday, November 15, 2022 Approved
Juju 2.9.32 171 Friday, June 24, 2022 Approved
Juju 2.9.31 133 Tuesday, May 31, 2022 Approved
Juju 2.9.29 127 Saturday, April 30, 2022 Approved
Juju 2.9.28 139 Friday, April 8, 2022 Approved
Juju 2.9.27 146 Tuesday, March 22, 2022 Approved
Juju 2.9.26 121 Saturday, March 12, 2022 Approved
Juju 2.9.25 153 Thursday, February 24, 2022 Approved
Juju 2.9.22 153 Tuesday, January 4, 2022 Approved
Juju 2.9.15 163 Tuesday, September 28, 2021 Approved
Juju 2.9.14 141 Tuesday, September 14, 2021 Approved
Juju 2.9.12 140 Monday, August 30, 2021 Approved
Juju 2.9.11 197 Wednesday, August 18, 2021 Approved
Juju 2.9.10 145 Tuesday, August 3, 2021 Approved
Juju 2.9.9 156 Monday, July 19, 2021 Approved
Juju 2.9.8 145 Tuesday, July 13, 2021 Approved
Juju 2.9.7 141 Wednesday, July 7, 2021 Approved
Juju 2.9.5 168 Wednesday, June 23, 2021 Approved
Juju 2.9.3 163 Monday, June 7, 2021 Approved
Juju 2.9.0 147 Saturday, May 15, 2021 Approved
Juju 2.9-rc9 158 Wednesday, April 7, 2021 Approved
Juju 2.9-rc8 143 Wednesday, March 31, 2021 Approved
Juju 2.9-rc7 152 Tuesday, March 23, 2021 Approved
Juju 2.9-rc6 176 Thursday, February 25, 2021 Approved
Juju 2.9-rc5 193 Tuesday, January 26, 2021 Approved
Juju 2.9-rc4 155 Friday, January 22, 2021 Approved
Juju 2.9-rc3 179 Thursday, December 17, 2020 Approved
Juju 2.9-rc2 194 Monday, November 2, 2020 Approved
Juju 2.9-rc1 218 Friday, October 30, 2020 Approved
Juju 2.9-beta1 198 Friday, October 16, 2020 Approved
Juju 2.8.10 190 Thursday, March 25, 2021 Approved
Juju 2.8.9 190 Wednesday, February 24, 2021 Approved
Juju 2.8.8 177 Tuesday, February 9, 2021 Approved
Juju 2.8.7 216 Monday, December 14, 2020 Approved
Juju 2.8.6 217 Friday, October 30, 2020 Approved
Juju 2.8.5 212 Wednesday, October 7, 2020 Approved
Juju 2.8.4 199 Monday, October 5, 2020 Approved
Juju 2.8.3 210 Friday, September 18, 2020 Approved
Juju 2.8.2 195 Tuesday, September 15, 2020 Approved
Juju 2.8.1 298 Monday, July 13, 2020 Approved
Juju 2.8.0 243 Thursday, June 4, 2020 Approved
Juju 2.8-rc3 252 Friday, May 29, 2020 Approved
Juju 2.8-rc2 217 Tuesday, May 19, 2020 Approved
Juju 2.8-rc1 250 Monday, May 11, 2020 Approved
Juju 2.8-beta1 244 Friday, April 24, 2020 Approved
Juju 2.7.8 250 Wednesday, July 22, 2020 Approved
Juju 2.7.7 196 Tuesday, June 30, 2020 Approved
Juju 2.7.6 273 Tuesday, April 21, 2020 Approved
Juju 2.7.5 250 Thursday, April 2, 2020 Approved
Juju 2.7.4 278 Thursday, March 12, 2020 Approved
Juju 2.7.3 234 Thursday, February 27, 2020 Approved
Juju 2.7.2 243 Tuesday, February 18, 2020 Approved
Juju 2.7.1 261 Monday, January 20, 2020 Approved
Juju 2.7.0 265 Thursday, November 28, 2019 Approved
Juju 2.7-rc5 241 Wednesday, November 20, 2019 Approved
Juju 2.7-rc4 253 Wednesday, November 13, 2019 Approved
Juju 2.7-rc3 236 Monday, November 11, 2019 Approved
Juju 2.7-rc2 247 Thursday, November 7, 2019 Approved
Juju 2.7-rc1 209 Monday, November 4, 2019 Approved
Juju 2.7-beta1 247 Tuesday, October 22, 2019 Approved
Juju 2.6.10 301 Wednesday, October 30, 2019 Approved
Juju 2.6.9 218 Wednesday, September 25, 2019 Approved
Juju 2.6.8 281 Thursday, August 29, 2019 Approved
Juju 2.6.6 249 Thursday, August 1, 2019 Approved
Juju 2.6.5 282 Tuesday, July 2, 2019 Approved
Juju 2.6.4 261 Thursday, June 20, 2019 Approved
Juju 2.6.3 283 Tuesday, June 4, 2019 Approved
Juju 2.6.2 308 Saturday, May 18, 2019 Approved
Juju 2.6.1 269 Tuesday, May 14, 2019 Approved
Juju 2.6-rc1 284 Thursday, May 2, 2019 Approved
Juju 2.6-beta2 255 Wednesday, April 24, 2019 Approved
Juju 2.6-beta1 315 Saturday, April 13, 2019 Approved
Juju 2.5.8 234 Friday, June 28, 2019 Approved
Juju 2.5.7 314 Friday, May 10, 2019 Approved
Juju 2.5.4 294 Tuesday, April 2, 2019 Approved
Juju 2.5.3 274 Tuesday, March 26, 2019 Approved
Juju 2.5.2 280 Tuesday, March 12, 2019 Approved
Juju 2.5.1 281 Friday, February 15, 2019 Approved
Juju 2.5.0 300 Monday, January 21, 2019 Approved
Juju 2.5-rc2 300 Tuesday, January 15, 2019 Approved
Juju 2.5-rc1 296 Saturday, December 15, 2018 Approved
Juju 2.5-beta3 300 Friday, November 30, 2018 Approved
Juju 2.5-beta1 348 Wednesday, November 14, 2018 Approved
Juju 2.4.7 285 Thursday, November 29, 2018 Approved
Juju 2.4.6 327 Thursday, November 15, 2018 Approved
Juju 2.4.5 326 Wednesday, November 7, 2018 Approved
Juju 2.4.4 342 Monday, October 8, 2018 Approved
Juju 2.4.3 306 Friday, August 31, 2018 Approved
Juju 2.4.2 318 Monday, August 27, 2018 Approved
Juju 2.4.1 355 Thursday, July 26, 2018 Approved
Juju 2.4.0 382 Tuesday, July 3, 2018 Approved
Juju 2.4-rc3 345 Monday, June 25, 2018 Approved
Juju 2.4-rc2 344 Tuesday, June 19, 2018 Approved
Juju 2.4-rc1 345 Thursday, June 7, 2018 Approved
Juju 2.4-beta3 338 Friday, May 25, 2018 Approved
Juju 2.4-beta2 337 Friday, May 11, 2018 Approved
Juju 2.4-beta1 363 Thursday, April 19, 2018 Approved
Juju 2.3.8 386 Thursday, May 24, 2018 Approved
Juju 2.3.7 420 Tuesday, April 24, 2018 Approved
Juju 2.3.6 425 Thursday, April 19, 2018 Approved
Juju 2.3.5 407 Wednesday, March 28, 2018 Approved
Juju 2.3.4 447 Tuesday, February 27, 2018 Approved
Juju 2.3.3 438 Thursday, February 15, 2018 Approved
Juju 2.3.2 473 Tuesday, January 16, 2018 Approved
Juju 2.3.1 451 Friday, December 8, 2017 Approved
Juju 2.3.0 403 Friday, December 8, 2017 Approved
Juju 2.3-rc2 471 Wednesday, November 29, 2017 Approved
Juju 2.3-rc1 433 Friday, November 17, 2017 Approved
Juju 2.3-beta3 408 Friday, November 10, 2017 Approved
Juju 2.3-beta2 403 Thursday, November 2, 2017 Approved
Juju 2.3-beta1 407 Friday, October 6, 2017 Approved
Juju 2.2.9 378 Tuesday, January 9, 2018 Approved
Juju 2.2.8 406 Tuesday, December 19, 2017 Approved
Juju 2.2.7 417 Saturday, December 16, 2017 Approved
Juju 2.2.6 449 Friday, November 17, 2017 Approved
Juju 2.2.4 493 Thursday, September 14, 2017 Approved
Juju 2.2.3 447 Friday, September 8, 2017 Approved
Juju 2.2.2 458 Friday, July 14, 2017 Approved
Juju 2.2.1 427 Friday, June 23, 2017 Approved
Juju 2.2.0 442 Thursday, June 15, 2017 Approved
Juju 2.2-rc3 475 Tuesday, June 13, 2017 Approved
Juju 2.2-rc2 502 Friday, June 9, 2017 Approved
Juju 2.2-rc1 463 Tuesday, June 6, 2017 Approved
Juju 2.2-beta4 506 Friday, May 12, 2017 Approved
Juju 2.2-beta3 502 Friday, April 28, 2017 Approved
Juju 2.2-beta2 490 Friday, March 31, 2017 Approved
Juju 2.2-beta1 439 Friday, March 24, 2017 Approved
Juju 2.2-alpha1 495 Thursday, March 16, 2017 Approved
Juju 2.1.2 484 Thursday, March 16, 2017 Approved
Juju 2.1.1 418 Friday, March 3, 2017 Approved
Juju 2.1.0 442 Thursday, February 23, 2017 Approved
Juju 2.1-rc2 480 Friday, February 17, 2017 Approved
Juju 2.1-rc1 532 Friday, February 10, 2017 Approved
Juju 2.1-beta5 469 Friday, February 3, 2017 Approved
Juju 2.1-beta4 527 Friday, January 6, 2017 Approved
Juju 2.1-beta3 547 Friday, December 16, 2016 Approved
Juju 2.1-beta2 503 Tuesday, December 13, 2016 Approved
Juju 2.1-beta1 433 Thursday, November 17, 2016 Exempted
Juju 2.0.2 393 Tuesday, November 15, 2016 Approved
Discussion for the Juju Package

Ground Rules:

  • This discussion is only about Juju and the Juju 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 Juju, 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