diff --git a/src/types/k8s.go b/src/types/k8s.go index c69ca84709..079819acfd 100644 --- a/src/types/k8s.go +++ b/src/types/k8s.go @@ -47,8 +47,8 @@ type InstalledChart struct { type GitServerInfo struct { PushUsername string `json:"pushUsername" jsonschema:"description=Username of a user with push access to the git repository"` PushPassword string `json:"pushPassword" jsonschema:"description=Password of a user with push access to the git repository"` - PullUsername string `json:"pullUsername" jsonschema:"description=Username of a user with pull-only access to the git repository. If not provided for an external repository than the push-user is used"` - PullPassword string `json:"pullPassword" jsonschema:"description=Password of a user with pull-only access to the git repository. If not provided for an external repository than the push-user is used"` + PullUsername string `json:"pullUsername" jsonschema:"description=Username of a user with pull-only access to the git repository. If not provided for an external repository then the push-user is used"` + PullPassword string `json:"pullPassword" jsonschema:"description=Password of a user with pull-only access to the git repository. If not provided for an external repository then the push-user is used"` Address string `json:"address" jsonschema:"description=URL address of the git server"` InternalServer bool `json:"internalServer" jsonschema:"description=Indicates if we are using a git server that Zarf is directly managing"` diff --git a/src/ui/lib/api-types.ts b/src/ui/lib/api-types.ts index 05842f75d5..f0724ea993 100644 --- a/src/ui/lib/api-types.ts +++ b/src/ui/lib/api-types.ts @@ -135,12 +135,12 @@ export interface GitServerInfo { internalServer: boolean; /** * Password of a user with pull-only access to the git repository. If not provided for an - * external repository than the push-user is used + * external repository then the push-user is used */ pullPassword: string; /** * Username of a user with pull-only access to the git repository. If not provided for an - * external repository than the push-user is used + * external repository then the push-user is used */ pullUsername: string; /**