Skip to content

Commit

Permalink
Adds examples documentation for enabling/disabling tenants. (#2564)
Browse files Browse the repository at this point in the history
* Include tenant enabled/disabled state

* Fix example scripts

* Update wording

* Fix deactivate tenant path
  • Loading branch information
IsaacCalligeros95 authored Nov 28, 2024
1 parent 4ba269d commit 176f7bd
Show file tree
Hide file tree
Showing 5 changed files with 278 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: src/layouts/Default.astro
pubDate: 2023-01-01
modDate: 2023-01-01
title: Enable/disable machine
title: Deactivate machines
description: An example script that enables or disables a machine in Octopus.
---
import EnableDisableMachineScripts from 'src/shared-content/scripts/enable-disable-machine-scripts.include.md';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: src/layouts/Default.astro
pubDate: 2023-01-01
modDate: 2023-01-01
title: Enable/disable project
title: Deactivate projects
description: An example script that enables or disables a project in Octopus.
---
import EnableDisableProjectScripts from 'src/shared-content/scripts/enable-disable-project-scripts.include.md';
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
layout: src/layouts/Default.astro
pubDate: 2024-11-18
modDate: 2024-11-18
title: Deactivate tenants
description: An example script that activates or deactivates a tenant in Octopus.
---
import DeactivateTenantScripts from 'src/shared-content/scripts/deactivate-tenant-scripts.include.md';

In 2025.1 Octopus has added support for deactivating tenants. Inactive tenants do not allow deployments or runbook runs but are able to be edited. They are also removed from license calculations allowing you to effectively archive unused tenants and re-enable them in the future.
Inactive tenants are highlighted with grayed out text and are not available for selection on the deployment or runbook run pages. If deployments are created for inactive tenants via the API or CLI an exception will be thrown.

This script demonstrates how to programmatically deactivate a tenant.

## Usage

Provide values for the following:

- Octopus URL
- Octopus API Key
- Name of the space to use
- Name of the tenant
- Boolean value for enabled

## Script

<DeactivateTenantScripts />
3 changes: 2 additions & 1 deletion src/pages/docs/octopus-rest-api/examples/tenants/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ hideInThisSectionHeader: true
You can use the REST API to create and manage Server tasks in Octopus. Typical tasks might include:

- [Create a tenant](/docs/octopus-rest-api/examples/tenants/create-tenant)
- [Update tenant variables](/docs/octopus-rest-api/examples/tenants/update-tenant-variable)
- [Update tenant variables](/docs/octopus-rest-api/examples/tenants/update-tenant-variable)
- [Deactivate tenants](/docs/octopus-rest-api/examples/tenants/deactivate-tenant)
247 changes: 247 additions & 0 deletions src/shared-content/scripts/deactivate-tenant-scripts.include.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,247 @@
<details data-group="deactivate-tenant-scripts">
<summary>PowerShell (REST API)</summary>

```powershell
$ErrorActionPreference = "Stop";
# Define working variables
$octopusURL = "https://your-octopus-url"
$octopusAPIKey = "API-YOUR-KEY"
$header = @{ "X-Octopus-ApiKey" = $octopusAPIKey }
$tenantName = "MyTenant"
$tenantEnabled = $true
# Get space
$space = (Invoke-RestMethod -Method Get -Uri "$octopusURL/api/spaces/all" -Headers $header) | Where-Object {$_.Name -eq $spaceName}
# Get tenant
$tenant = (Invoke-RestMethod -Method Get -Uri "$octopusURL/api/$($space.Id)/tenants/all" -Headers $header) | Where-Object {$_.Name -eq $tenantName}
# Enable/disable tenant
$tenant.IsDisabled = !$tenantEnabled
# Update tenant
Invoke-RestMethod -Method Put -Uri "$octopusURL/api/$($space.Id)/tenants/$($tenant.Id)" -Headers $header -Body ($tenant | ConvertTo-Json -Depth 10)
```

</details>
<details data-group="deactivate-tenant-scripts">
<summary>PowerShell (Octopus.Client)</summary>

```powershell
# Load octopus.client assembly
Add-Type -Path "c:\octopus.client\Octopus.Client.dll"
# Octopus variables
$octopusURL = "https://your-octopus-url"
$octopusAPIKey = "API-YOUR-KEY"
$spaceName = "default"
$tenantName = "MyTenant"
$tenantEnabled = $true
$endpoint = New-Object Octopus.Client.OctopusServerEndpoint $octopusURL, $octopusAPIKey
$repository = New-Object Octopus.Client.OctopusRepository $endpoint
$client = New-Object Octopus.Client.OctopusClient $endpoint
try
{
# Get space
$space = $repository.Spaces.FindByName($spaceName)
$repositoryForSpace = $client.ForSpace($space)
# Get tenant
$tenant = $repositoryForSpace.Tenants.FindByName($tenantName)
# Enable/disable tenant
$tenant.IsDisabled = !$tenantEnabled
# Update tenant
$repositoryForSpace.Tenants.Modify($tenant)
}
catch
{
Write-Host $_.Exception.Message
}
```

</details>
<details data-group="deactivate-tenant-scripts">
<summary>C#</summary>

```csharp
// If using .net Core, be sure to add the NuGet package of System.Security.Permissions
#r "path\to\Octopus.Client.dll"

using Octopus.Client;
using Octopus.Client.Model;

// Declare working variables
var octopusURL = "https://your-octopus-url";
var octopusAPIKey = "API-YOUR-KEY";
var spaceName = "default";
var tenantName = "MyTenant";
bool enabled = false;

// Create repository object
var endpoint = new OctopusServerEndpoint(octopusURL, octopusAPIKey);
var repository = new OctopusRepository(endpoint);
var client = new OctopusClient(endpoint);

try
{
// Get space
var space = repository.Spaces.FindByName(spaceName);
var repositoryForSpace = client.ForSpace(space);

// Get tenant
var tenant = repositoryForSpace.Tenants.FindByName(tenantName);

// Enable/disable tenant
tenant.IsDisabled = !enabled;

//update tenant
repositoryForSpace.Tenants.Modify(tenant);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
return;
}
```

</details>
<details data-group="deactivate-tenant-scripts">
<summary>Python3</summary>

```python
import json
import requests

octopus_server_uri = 'https://your-octopus-url/api'
octopus_api_key = 'API-YOUR-KEY'
headers = {'X-Octopus-ApiKey': octopus_api_key}


def get_octopus_resource(uri):
response = requests.get(uri, headers=headers)
response.raise_for_status()

return json.loads(response.content.decode('utf-8'))


def get_by_name(uri, name):
resources = get_octopus_resource(uri)
return next((x for x in resources if x['Name'] == name), None)


space_name = 'Default'
tenant_name = 'Your Tenant Name'
disable_tenant = False

space = get_by_name('{0}/spaces/all'.format(octopus_server_uri), space_name)
tenant = get_by_name('{0}/{1}/tenants/all'.format(octopus_server_uri, space['Id']), tenant_name)

tenant['IsDisabled'] = disable_tenant

uri = '{0}/{1}/tenants/{2}'.format(octopus_server_uri, space['Id'], tenant['Id'])
response = requests.put(uri, headers=headers, json=tenant)
response.raise_for_status()
```

</details>
<details data-group="deactivate-tenant-scripts">
<summary>Go</summary>

```go
package main

import (
"log"
"net/url"

"github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/client"
"github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/spaces"
"github.com/OctopusDeploy/go-octopusdeploy/v2/pkg/tenants"
)

func main() {
apiURL, err := url.Parse("https://your-octopus-url")
if err != nil {
log.Println(err)
}
APIKey := "API-YOUR-KEY"
spaceName := "Default"
tenantName := "MyTenant"
enabled := true

space := GetSpace(apiURL, APIKey, spaceName)
if space == nil {
log.Println(err)
}

client := octopusAuth(apiURL, APIKey, space.ID)

tenant := GetTenantByName(client, tenantName)
if tenant == nil {
log.Println(err)
}

tenant.IsDisabled = !enabled
updatedTenant, err := client.Tenants.Update(tenant)
if err != nil {
log.Println(err)
}

log.Printf("Tenant '%s' updated successfully. IsDisabled: %v", updatedTenant.Name, updatedTenant.IsDisabled)
}

func octopusAuth(octopusURL *url.URL, APIKey string, spaceID string) *client.Client {
client, err := client.NewClient(nil, octopusURL, APIKey, spaceID)
if err != nil {
log.Println(err)
}
return client
}

func GetSpace(octopusURL *url.URL, APIKey string, spaceName string) *spaces.Space {
client := octopusAuth(octopusURL, APIKey, "")

spaceQuery := spaces.SpacesQuery{
PartialName: spaceName,
}

spaces, err := client.Spaces.Get(spaceQuery)
if err != nil {
log.Println(err)
}

for _, space := range spaces.Items {
if space.Name == spaceName {
return space
}
}

return nil
}

func GetTenantByName(client *client.Client, tenantName string) *tenants.Tenant {
tenantQuery := tenants.TenantsQuery{
Name: tenantName,
}

tenants, err := client.Tenants.Get(tenantQuery)
if err != nil {
log.Println(err)
}

if len(tenants.Items) == 1 {
return tenants.Items[0]
}

return nil
}


```

</details>

0 comments on commit 176f7bd

Please sign in to comment.