Skip to content

Commit

Permalink
Making Use tags default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
Shoaeb Jindani committed Nov 1, 2023
1 parent 4c3b27d commit 33d4f55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions api/v1beta1/ibpconsole.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ func (s *IBPConsole) GetMSPID() string {
}

func (s *IBPConsole) UseTags() bool {
useTags := false
if s.Spec.UseTags != nil && *(s.Spec.UseTags) {
useTags := true
if s.Spec.UseTags != nil {
useTags = *s.Spec.UseTags
}
return useTags
Expand Down
1 change: 0 additions & 1 deletion definitions/console/deployer-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ data:
password: dev123
imagePullSecret: ""
usetags: false
versions:
ca:
1.5.3-1:
Expand Down

0 comments on commit 33d4f55

Please sign in to comment.