Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run misspell #5122

Merged
merged 1 commit into from
Jul 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ADOPTERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ If you're using Kubeapps and want to add your organization to this list, follow

<a href="https://www.terasky.com/" border="0" target="_blank"><img alt="Terasky" src="./site/content/docs/latest/img/adopters/terasky.svg" height="40" style="background-color: #FFF;"></a>

## Sucess Stories
## Success Stories

Below is a list of adopters of Kubeapps that have publicly shared the details of how they use it (in alphabetical order).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ func TestKindClusterAutoUpdateInstalledPackage(t *testing.T) {
testYaml("podinfo-index.yaml"),
*podName,
"/usr/share/nginx/html/podinfo/index.yaml"); err != nil {
t.Logf("Error reverting to previos podinfo index: %v", err)
t.Logf("Error reverting to previous podinfo index: %v", err)
}
})
t.Logf("Waiting 45 seconds...")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3709,7 +3709,7 @@ func TestCreateInstalledPackage(t *testing.T) {
},
},
pluginConfig: &kappControllerPluginParsedConfig{
timeoutSeconds: 1, //to avoid unnecesary test delays
timeoutSeconds: 1, //to avoid unnecessary test delays
defaultUpgradePolicy: defaultPluginConfig.defaultUpgradePolicy,
defaultPrereleasesVersionSelection: defaultPluginConfig.defaultPrereleasesVersionSelection,
defaultAllowDowngrades: defaultPluginConfig.defaultAllowDowngrades,
Expand Down Expand Up @@ -9211,7 +9211,7 @@ func TestGetPackageRepositoryStatus(t *testing.T) {
},
},
{
name: "reconcilation failure",
name: "reconciliation failure",
existingStatus: kappctrlv1alpha1.GenericStatus{
Conditions: []kappctrlv1alpha1.Condition{
{
Expand All @@ -9226,7 +9226,7 @@ func TestGetPackageRepositoryStatus(t *testing.T) {
},
},
{
name: "reconcilation failure, extra error message",
name: "reconciliation failure, extra error message",
existingStatus: kappctrlv1alpha1.GenericStatus{
Conditions: []kappctrlv1alpha1.Condition{
{
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/latest/howto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ How-to guides can be thought of as directions that guide the reader through the
| [Access Control](./access-control.md) | Establish how users will authenticate with the Kubernetes clusters on which Kubeapps operates. |
| [Basic Form Support](./basic-form-support.md) | Configure your Helm chart in order to present a simple intuitive form during installation. |
| [Custom App View Support](./custom-app-view-support.md) | Inject custom app views for specific deployments. |
| [Custom Form Component Support](./custom-form-component-support.md) | Extend basic form with custom UI component or thrid party APIs for component values and validation. |
| [Custom Form Component Support](./custom-form-component-support.md) | Extend basic form with custom UI component or third party APIs for component values and validation. |
| [Dashboard](./dashboard.md) | Manage and deploy applications in your cluster by using Kubeapps dashboard. |
| [Multi-cluster Support](./deploying-to-multiple-clusters.md) | Configure Kubeapps to target other clusters when deploying a package, in addition to the cluster on which Kubeapps is itself deployed. |
| [Offline Installation](./offline-installation.md) | Install Kubeapps in an offline environment (without Internet connection) |
Expand Down