Skip to content

Commit c771247

Browse files
authored
Merge pull request #1896 from franknstyle/docs-new
add docs for v0.56.16
2 parents f6b766f + afdd4ea commit c771247

96 files changed

Lines changed: 2851 additions & 39 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pkg/buildinfo/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package buildinfo
2121

2222
// Version is the current version of Sonobuoy, set by the go linker's -X flag at build time.
2323
// Ensure that this is bumped manually as well so that Sonobuoy, as a library, also has the right version.
24-
var Version = "v0.56.15"
24+
var Version = "v0.56.16"
2525

2626
// GitSHA is the actual commit that is being built, set by the go linker's -X flag at build time.
2727
var GitSHA string

site/config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ params:
3232
docs_search_index_name: index_name
3333
docs_search_api_key: api_key
3434
docs_versioning: true
35-
docs_latest: v0.56.15
35+
docs_latest: v0.56.16
3636
docs_versions:
3737
- main
38+
- v0.56.16
3839
- v0.56.15
3940
- v0.56.14
4041
- v0.56.13

site/content/docs/main/cli/sonobuoy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ sonobuoy [flags]
3535
* [sonobuoy version](sonobuoy_version.md) - Print sonobuoy version
3636
* [sonobuoy wait](sonobuoy_wait.md) - Waits on the Sonobuoy run in the targeted namespace.
3737

38-
###### Auto generated by spf13/cobra on 20-Jan-2023
38+
###### Auto generated by spf13/cobra on 2-Mar-2023

site/content/docs/main/cli/sonobuoy_delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ sonobuoy delete [flags]
2929

3030
* [sonobuoy](sonobuoy.md) - Generate reports on your Kubernetes cluster by running plugins
3131

32-
###### Auto generated by spf13/cobra on 20-Jan-2023
32+
###### Auto generated by spf13/cobra on 2-Mar-2023

site/content/docs/main/cli/sonobuoy_e2e.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ sonobuoy e2e [flags]
2929

3030
* [sonobuoy](sonobuoy.md) - Generate reports on your Kubernetes cluster by running plugins
3131

32-
###### Auto generated by spf13/cobra on 20-Jan-2023
32+
###### Auto generated by spf13/cobra on 2-Mar-2023

site/content/docs/main/cli/sonobuoy_gen.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ sonobuoy gen [flags]
2929
--kubernetes-version string Use default E2E image, but override the version. Default is 'auto', which will be set to your cluster's version if detected, erroring otherwise. 'ignore' will try version resolution but ignore errors. 'latest' will find the latest dev image/version upstream.
3030
-m, --mode Mode What mode to run the e2e plugin in. Valid modes are [certified-conformance conformance-lite non-disruptive-conformance quick]. (default non-disruptive-conformance)
3131
-n, --namespace string The namespace to run Sonobuoy in. Only one Sonobuoy run can exist per namespace simultaneously. (default "sonobuoy")
32+
--namespace-psa-enforce-level string The PSA enforce level for the namespace. (default "privileged")
3233
-p, --plugin pluginList Which plugins to run. Can either point to a URL, local file/directory, or be one of the known plugins (e2e or systemd-logs). Can be specified multiple times to run multiple plugins.
3334
--plugin-env pluginenvvar Set env vars on plugins. Values can be given multiple times and are in the form plugin.env=value (default map[])
3435
--plugin-image plugin:image Override a plugins image from what is in its definition (e.g. myPlugin:testimage) (default map[])
@@ -38,7 +39,7 @@ sonobuoy gen [flags]
3839
--service-account-name string Name of the service account to be used by sonobuoy. (default "sonobuoy-serviceaccount")
3940
--show-default-podspec If true, include the default pod spec used for plugins in the output.
4041
--skip-preflight strings[=true] Skips the specified preflight checks. Valid values are [dnscheck, versioncheck, existingnamespace] or true to skip all of the checks.
41-
--sonobuoy-image string Container image override for the sonobuoy worker and aggregator. (default "sonobuoy/sonobuoy:v0.56.14-1-g69f7154c-dirty")
42+
--sonobuoy-image string Container image override for the sonobuoy worker and aggregator. (default "sonobuoy/sonobuoy:537203ab")
4243
--ssh-key yamlFile Path to the private key enabling SSH to cluster nodes. May be required by some tests from the e2e plugin.
4344
--ssh-user envModifier SSH user for ssh-key. Required if running e2e plugin with certain tests that require SSH access to nodes.
4445
--systemd-logs-image image Container image override for the systemd-logs plugin. Shorthand for --plugin-image=systemd-logs:<string> (default map[])
@@ -60,4 +61,4 @@ sonobuoy gen [flags]
6061
* [sonobuoy gen default-image-config](sonobuoy_gen_default-image-config.md) - Generates the default image registry config for the e2e plugin
6162
* [sonobuoy gen plugin](sonobuoy_gen_plugin.md) - Generates the manifest Sonobuoy uses to define a plugin
6263

63-
###### Auto generated by spf13/cobra on 20-Jan-2023
64+
###### Auto generated by spf13/cobra on 2-Mar-2023

site/content/docs/main/cli/sonobuoy_gen_config.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ sonobuoy gen config [flags]
2929
--kubernetes-version string Use default E2E image, but override the version. Default is 'auto', which will be set to your cluster's version if detected, erroring otherwise. 'ignore' will try version resolution but ignore errors. 'latest' will find the latest dev image/version upstream.
3030
-m, --mode Mode What mode to run the e2e plugin in. Valid modes are [certified-conformance conformance-lite non-disruptive-conformance quick]. (default non-disruptive-conformance)
3131
-n, --namespace string The namespace to run Sonobuoy in. Only one Sonobuoy run can exist per namespace simultaneously. (default "sonobuoy")
32+
--namespace-psa-enforce-level string The PSA enforce level for the namespace. (default "privileged")
3233
-p, --plugin pluginList Which plugins to run. Can either point to a URL, local file/directory, or be one of the known plugins (e2e or systemd-logs). Can be specified multiple times to run multiple plugins.
3334
--plugin-env pluginenvvar Set env vars on plugins. Values can be given multiple times and are in the form plugin.env=value (default map[])
3435
--plugin-image plugin:image Override a plugins image from what is in its definition (e.g. myPlugin:testimage) (default map[])
@@ -38,7 +39,7 @@ sonobuoy gen config [flags]
3839
--service-account-name string Name of the service account to be used by sonobuoy. (default "sonobuoy-serviceaccount")
3940
--show-default-podspec If true, include the default pod spec used for plugins in the output.
4041
--skip-preflight strings[=true] Skips the specified preflight checks. Valid values are [dnscheck, versioncheck, existingnamespace] or true to skip all of the checks.
41-
--sonobuoy-image string Container image override for the sonobuoy worker and aggregator. (default "sonobuoy/sonobuoy:v0.56.14-1-g69f7154c-dirty")
42+
--sonobuoy-image string Container image override for the sonobuoy worker and aggregator. (default "sonobuoy/sonobuoy:537203ab")
4243
--ssh-key yamlFile Path to the private key enabling SSH to cluster nodes. May be required by some tests from the e2e plugin.
4344
--ssh-user envModifier SSH user for ssh-key. Required if running e2e plugin with certain tests that require SSH access to nodes.
4445
--systemd-logs-image image Container image override for the systemd-logs plugin. Shorthand for --plugin-image=systemd-logs:<string> (default map[])
@@ -57,4 +58,4 @@ sonobuoy gen config [flags]
5758

5859
* [sonobuoy gen](sonobuoy_gen.md) - Generates a sonobuoy manifest for submission via kubectl
5960

60-
###### Auto generated by spf13/cobra on 20-Jan-2023
61+
###### Auto generated by spf13/cobra on 2-Mar-2023

site/content/docs/main/cli/sonobuoy_gen_default-image-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ sonobuoy gen default-image-config [flags]
2424

2525
* [sonobuoy gen](sonobuoy_gen.md) - Generates a sonobuoy manifest for submission via kubectl
2626

27-
###### Auto generated by spf13/cobra on 20-Jan-2023
27+
###### Auto generated by spf13/cobra on 2-Mar-2023

site/content/docs/main/cli/sonobuoy_gen_plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ sonobuoy gen plugin -n myPlugin -i myregistry/myimage:v0
4242
* [sonobuoy gen plugin e2e](sonobuoy_gen_plugin_e2e.md) - Generates the e2e plugin definition based on the given options
4343
* [sonobuoy gen plugin systemd-logs](sonobuoy_gen_plugin_systemd-logs.md) - Generates the systemd-logs plugin definition based on the given options
4444

45-
###### Auto generated by spf13/cobra on 20-Jan-2023
45+
###### Auto generated by spf13/cobra on 2-Mar-2023

site/content/docs/main/cli/sonobuoy_gen_plugin_e2e.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ sonobuoy gen plugin e2e [flags]
3030
--kubernetes-version string Use default E2E image, but override the version. Default is 'auto', which will be set to your cluster's version if detected, erroring otherwise. 'ignore' will try version resolution but ignore errors. 'latest' will find the latest dev image/version upstream.
3131
-m, --mode Mode What mode to run the e2e plugin in. Valid modes are [certified-conformance conformance-lite non-disruptive-conformance quick]. (default non-disruptive-conformance)
3232
-n, --namespace string The namespace to run Sonobuoy in. Only one Sonobuoy run can exist per namespace simultaneously. (default "sonobuoy")
33+
--namespace-psa-enforce-level string The PSA enforce level for the namespace. (default "privileged")
3334
-p, --plugin pluginList Which plugins to run. Can either point to a URL, local file/directory, or be one of the known plugins (e2e or systemd-logs). Can be specified multiple times to run multiple plugins.
3435
--plugin-env pluginenvvar Set env vars on plugins. Values can be given multiple times and are in the form plugin.env=value (default map[])
3536
--plugin-image plugin:image Override a plugins image from what is in its definition (e.g. myPlugin:testimage) (default map[])
@@ -39,7 +40,7 @@ sonobuoy gen plugin e2e [flags]
3940
--service-account-name string Name of the service account to be used by sonobuoy. (default "sonobuoy-serviceaccount")
4041
--show-default-podspec If true, include the default pod spec used for plugins in the output.
4142
--skip-preflight strings[=true] Skips the specified preflight checks. Valid values are [dnscheck, versioncheck, existingnamespace] or true to skip all of the checks.
42-
--sonobuoy-image string Container image override for the sonobuoy worker and aggregator. (default "sonobuoy/sonobuoy:v0.56.14-1-g69f7154c-dirty")
43+
--sonobuoy-image string Container image override for the sonobuoy worker and aggregator. (default "sonobuoy/sonobuoy:537203ab")
4344
--ssh-key yamlFile Path to the private key enabling SSH to cluster nodes. May be required by some tests from the e2e plugin.
4445
--ssh-user envModifier SSH user for ssh-key. Required if running e2e plugin with certain tests that require SSH access to nodes.
4546
--systemd-logs-image image Container image override for the systemd-logs plugin. Shorthand for --plugin-image=systemd-logs:<string> (default map[])
@@ -58,4 +59,4 @@ sonobuoy gen plugin e2e [flags]
5859

5960
* [sonobuoy gen plugin](sonobuoy_gen_plugin.md) - Generates the manifest Sonobuoy uses to define a plugin
6061

61-
###### Auto generated by spf13/cobra on 20-Jan-2023
62+
###### Auto generated by spf13/cobra on 2-Mar-2023

0 commit comments

Comments
 (0)