Skip to content

Commit

Permalink
Remove AdditionalRuleNames, since they are not needed anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
bashofmann committed Nov 5, 2024
1 parent ca31743 commit dfa518d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 23 deletions.
10 changes: 0 additions & 10 deletions api/v1/qdrantcluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -617,9 +617,6 @@ type TraefikConfig struct {
// AllowedSourceRanges specifies the allowed CIDR source ranges for the ingress.
// +optional
AllowedSourceRanges []string `json:"allowedSourceRanges,omitempty"`
// AdditionalRuleNames specifies additional rule names for the ingress route. The actual rules can be configured in the operator settings.
// +optional
AdditionalRuleNames []string `json:"additionalRuleNames,omitempty"`
}

func (c *TraefikConfig) GetAllowedSourceRanges() []string {
Expand All @@ -629,13 +626,6 @@ func (c *TraefikConfig) GetAllowedSourceRanges() []string {
return c.AllowedSourceRanges
}

func (c *TraefikConfig) GetAdditionalRuleNames() []string {
if c == nil {
return nil
}
return c.AdditionalRuleNames
}

type StorageClassNames struct {
// DB specifies the storage class name for db volume.
// +optional
Expand Down
5 changes: 0 additions & 5 deletions api/v1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -328,13 +328,6 @@ spec:
traefik:
description: Traefik specifies the traefik ingress specific configurations.
properties:
additionalRuleNames:
description: AdditionalRuleNames specifies additional rule
names for the ingress route. The actual rules can be configured
in the operator settings.
items:
type: string
type: array
allowedSourceRanges:
description: AllowedSourceRanges specifies the allowed CIDR
source ranges for the ingress.
Expand Down
1 change: 0 additions & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,6 @@ _Appears in:_
| Field | Description | Default | Validation |
| --- | --- | --- | --- |
| `allowedSourceRanges` _string array_ | AllowedSourceRanges specifies the allowed CIDR source ranges for the ingress. | | |
| `additionalRuleNames` _string array_ | AdditionalRuleNames specifies additional rule names for the ingress route. The actual rules can be configured in the operator settings. | | |


#### VolumeSnapshotInfo
Expand Down

0 comments on commit dfa518d

Please sign in to comment.