Skip to content

Commit

Permalink
installer/openvsx-proxy: Add missing status field
Browse files Browse the repository at this point in the history
Signed-off-by: ArthurSens <arthursens2005@gmail.com>
  • Loading branch information
ArthurSens committed Mar 1, 2022
1 parent 2487092 commit 8989651
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions install/installer/pkg/components/openvsx-proxy/statefulset.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package openvsx_proxy

import (
"fmt"

"github.com/gitpod-io/gitpod/installer/pkg/cluster"

"github.com/gitpod-io/gitpod/installer/pkg/common"
Expand Down Expand Up @@ -102,5 +103,9 @@ func statefulset(ctx *common.RenderContext) ([]runtime.Object, error) {
},
},
},
Status: appsv1.StatefulSetStatus{
Replicas: *pointer.Int32(1),
AvailableReplicas: *pointer.Int32(1),
},
}}, nil
}

0 comments on commit 8989651

Please sign in to comment.