Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-mccoy committed Jul 27, 2022
1 parent 4136804 commit 6b6856e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/4-user-guide/3-zarf-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ must respect the following conditions

![Required](https://img.shields.io/badge/Required-red)

**Description:** The namespace to targer for data injection
**Description:** The namespace to target for data injection

| Type | `string` |
| ---- | -------- |
Expand Down
4 changes: 2 additions & 2 deletions src/internal/helm/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func installChart(actionConfig *action.Configuration, options ChartOptions, post
// Bind the helm action
client := action.NewInstall(actionConfig)

// Let each chart run for 5 minutes
// Let each chart run for 15 minutes
client.Timeout = 15 * time.Minute

// Default helm behavior for Zarf is to wait for the resources to deploy, NoWait overrides that for special cases (such as data-injection)
Expand Down Expand Up @@ -250,7 +250,7 @@ func upgradeChart(actionConfig *action.Configuration, options ChartOptions, post
message.Debugf("helm.upgradeChart(%#v, %#v, %#v)", actionConfig, options, postRender)
client := action.NewUpgrade(actionConfig)

// Let each chart run for 5 minutes
// Let each chart run for 15 minutes
client.Timeout = 15 * time.Minute

// Default helm behavior for Zarf is to wait for the resources to deploy, NoWait overrides that for special cases (such as data-injection)k3
Expand Down
2 changes: 1 addition & 1 deletion src/types/component.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ type ZarfComponentScripts struct {

// ZarfContainerTarget defines the destination info for a ZarfData target
type ZarfContainerTarget struct {
Namespace string `yaml:"namespace" jsonschema:"description=The namespace to targer for data injection"`
Namespace string `yaml:"namespace" jsonschema:"description=The namespace to target for data injection"`
Selector string `yaml:"selector" jsonschema:"description=The K8s selector to target for data injection"`
Container string `yaml:"container" jsonschema:"description=The container to target for data injection"`
Path string `yaml:"path" jsonschema:"description=The path to copy the data to in the container"`
Expand Down
2 changes: 1 addition & 1 deletion zarf.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
"properties": {
"namespace": {
"type": "string",
"description": "The namespace to targer for data injection"
"description": "The namespace to target for data injection"
},
"selector": {
"type": "string",
Expand Down

0 comments on commit 6b6856e

Please sign in to comment.