Skip to content

Commit

Permalink
6.11.0 release: Docs updates (#4209)
Browse files Browse the repository at this point in the history
Approved for release
  • Loading branch information
hillaryfraley committed Mar 1, 2024
1 parent 72f65c8 commit 90e1256
Show file tree
Hide file tree
Showing 374 changed files with 81,773 additions and 88 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 5 additions & 9 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,26 +56,22 @@ disableKinds = ["taxonomy", "taxonomyTerm"]
description = "The next-generation monitoring event pipeline"
notice = "Replaces Sensu Core and Enterprise"
weight = 1
latest = "6.10"
latest = "6.11"

[[params.products.sensu_go.versions]]
version = "6.10"
platforms = []

[[params.products.sensu_go.versions]]
version = "6.9"
version = "6.11"
platforms = []

[[params.products.sensu_go.versions]]
version = "6.8"
version = "6.10"
platforms = []

[[params.products.sensu_go.versions]]
version = "6.7"
version = "6.9"
platforms = []

[[params.products.sensu_go.versions]]
version = "6.6"
version = "6.8"
platforms = []

[params.products.sensu_core]
Expand Down
20 changes: 10 additions & 10 deletions content/sensu-go/6.10/operations/deploy-sensu/install-sensu.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,24 +289,24 @@ sudo yum install sensu-go-cli

{{< code powershell "Windows" >}}
# Download sensuctl for Windows amd64
Invoke-WebRequest https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.9.2/sensu-go_6.9.2_windows_amd64.zip -OutFile C:\Users\Administrator\sensu-go_6.9.2_windows_amd64.zip
Invoke-WebRequest https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.10.0/sensu-go_6.10.0_windows_amd64.zip -OutFile C:\Users\Administrator\sensu-go_6.10.0_windows_amd64.zip

# Or for Windows 386
Invoke-WebRequest https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.9.2/sensu-go_6.9.2_windows_386.zip -OutFile C:\Users\Administrator\sensu-go_6.9.2_windows_386.zip
Invoke-WebRequest https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.10.0/sensu-go_6.10.0_windows_386.zip -OutFile C:\Users\Administrator\sensu-go_6.10.0_windows_386.zip

# Unzip the file with PowerShell for Windows amd64
Expand-Archive -LiteralPath 'C:\Users\Administrator\sensu-go_6.9.2_windows_amd64.zip' -DestinationPath 'C:\\Program Files\sensu\sensuctl\bin'
Expand-Archive -LiteralPath 'C:\Users\Administrator\sensu-go_6.10.0_windows_amd64.zip' -DestinationPath 'C:\\Program Files\sensu\sensuctl\bin'

# or for Windows 386
Expand-Archive -LiteralPath 'C:\Users\Administrator\sensu-go_6.9.2_windows_386.zip' -DestinationPath 'C:\\Program Files\sensu\sensuctl\bin'
Expand-Archive -LiteralPath 'C:\Users\Administrator\sensu-go_6.10.0_windows_386.zip' -DestinationPath 'C:\\Program Files\sensu\sensuctl\bin'
{{< /code >}}

{{< code shell "macOS" >}}
# Download the latest release
curl -LO https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.9.2/sensu-go_6.9.2_darwin_amd64.tar.gz
curl -LO https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.10.0/sensu-go_6.10.0_darwin_amd64.tar.gz

# Extract the archive
tar -xvf sensu-go_6.9.2_darwin_amd64.tar.gz
tar -xvf sensu-go_6.10.0_darwin_amd64.tar.gz

# Copy the executable into your PATH
sudo cp sensuctl /usr/local/bin/
Expand Down Expand Up @@ -376,16 +376,16 @@ sudo yum install sensu-go-agent

{{< code powershell "Windows" >}}
# Download the Sensu agent for Windows amd64
Invoke-WebRequest https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.9.2/sensu-go-agent_6.9.2.7020_en-US.x64.msi -OutFile "$env:userprofile\sensu-go-agent_6.9.2.7020_en-US.x64.msi"
Invoke-WebRequest https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.10.0/sensu-go-agent_6.10.0.7172_en-US.x64.msi -OutFile "$env:userprofile\sensu-go-agent_6.10.0.7172_en-US.x64.msi"

# Or for Windows 386
Invoke-WebRequest https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.9.2/sensu-go-agent_6.9.2.7020_en-US.x86.msi -OutFile "$env:userprofile\sensu-go-agent_6.9.2.7020_en-US.x86.msi"
Invoke-WebRequest https://s3-us-west-2.amazonaws.com/sensu.io/sensu-go/6.10.0/sensu-go-agent_6.10.0.7172_en-US.x86.msi -OutFile "$env:userprofile\sensu-go-agent_6.10.0.7172_en-US.x86.msi"

# Install the Sensu agent for Windows amd64
msiexec.exe /i $env:userprofile\sensu-go-agent_6.9.2.7020_en-US.x64.msi /qn
msiexec.exe /i $env:userprofile\sensu-go-agent_6.10.0.7172_en-US.x64.msi /qn

# Or for Windows 386
msiexec.exe /i $env:userprofile\sensu-go-agent_6.9.2.7020_en-US.x86.msi /qn
msiexec.exe /i $env:userprofile\sensu-go-agent_6.10.0.7172_en-US.x86.msi /qn

# Or via Chocolatey
choco install sensu-agent
Expand Down
130 changes: 65 additions & 65 deletions content/sensu-go/6.10/platforms.md

Large diffs are not rendered by default.

111 changes: 111 additions & 0 deletions content/sensu-go/6.11/_index.md

Large diffs are not rendered by default.

Loading

0 comments on commit 90e1256

Please sign in to comment.