Skip to content

Commit

Permalink
Fix typo in pullSecretName (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
bashofmann authored Sep 3, 2024
1 parent 0b80b66 commit 0b4d399
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api/v1/qdrantcluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ type QdrantImage struct {
PullPolicy *corev1.PullPolicy `json:"pullPolicy,omitempty"`
// PullSecretName specifies the pull secret for the Qdrant image.
// +optional
PullSecretName *string `json:"PullSecretName,omitempty"`
PullSecretName *string `json:"pullSecretName,omitempty"`
}

func (qi *QdrantImage) GetRepository() *string {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ spec:
image:
description: Image specifies the image to use for each Qdrant node.
properties:
PullSecretName:
description: PullSecretName specifies the pull secret for the
Qdrant image.
type: string
pullPolicy:
description: |-
PullPolicy specifies the image pull policy for the Qdrant image.
If not specified defaults the config of the operator (or IfNotPresent if not specified in operator).
type: string
pullSecretName:
description: PullSecretName specifies the pull secret for the
Qdrant image.
type: string
repository:
description: |-
Repository specifies the repository of the Qdrant image.
Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ _Appears in:_
| --- | --- | --- | --- |
| `repository` _string_ | Repository specifies the repository of the Qdrant image.<br />If not specified defaults the config of the operator (or qdrant/qdrant if not specified in operator). | | |
| `pullPolicy` _[PullPolicy](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#pullpolicy-v1-core)_ | PullPolicy specifies the image pull policy for the Qdrant image.<br />If not specified defaults the config of the operator (or IfNotPresent if not specified in operator). | | |
| `PullSecretName` _string_ | PullSecretName specifies the pull secret for the Qdrant image. | | |
| `pullSecretName` _string_ | PullSecretName specifies the pull secret for the Qdrant image. | | |


#### QdrantSecretKeyRef
Expand Down

0 comments on commit 0b4d399

Please sign in to comment.