File tree Expand file tree Collapse file tree 4 files changed +215
-134
lines changed Expand file tree Collapse file tree 4 files changed +215
-134
lines changed Original file line number Diff line number Diff line change @@ -124,12 +124,14 @@ const (
124
124
TypeChannelDeprecated = "ChannelDeprecated"
125
125
TypeBundleDeprecated = "BundleDeprecated"
126
126
TypeUnpacked = "Unpacked"
127
+ TypeProgressing = "Progressing"
127
128
128
129
ReasonErrorGettingClient = "ErrorGettingClient"
129
130
ReasonBundleLoadFailed = "BundleLoadFailed"
130
131
131
- ReasonInstallationFailed = "InstallationFailed"
132
- ReasonResolutionFailed = "ResolutionFailed"
132
+ ReasonInstallationFailed = "InstallationFailed"
133
+ ReasonInstallationInProgress = "InstallationInProgress"
134
+ ReasonResolutionFailed = "ResolutionFailed"
133
135
134
136
ReasonSuccess = "Success"
135
137
ReasonDeprecated = "Deprecated"
@@ -151,6 +153,7 @@ func init() {
151
153
TypeChannelDeprecated ,
152
154
TypeBundleDeprecated ,
153
155
TypeUnpacked ,
156
+ TypeProgressing ,
154
157
)
155
158
// TODO(user): add Reasons from above
156
159
conditionsets .ConditionReasons = append (conditionsets .ConditionReasons ,
@@ -164,6 +167,7 @@ func init() {
164
167
ReasonUnpackSuccess ,
165
168
ReasonUnpackFailed ,
166
169
ReasonErrorGettingReleaseState ,
170
+ ReasonInstallationInProgress ,
167
171
)
168
172
}
169
173
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ toolchain go1.22.2
7
7
require (
8
8
github.com/Masterminds/semver/v3 v3.2.1
9
9
github.com/blang/semver/v4 v4.0.0
10
+ github.com/go-git/go-billy/v5 v5.5.0
10
11
github.com/go-logr/logr v1.4.2
11
12
github.com/google/go-cmp v0.6.0
12
13
github.com/operator-framework/api v0.26.0
@@ -112,7 +113,6 @@ require (
112
113
github.com/fsnotify/fsnotify v1.7.0 // indirect
113
114
github.com/go-errors/errors v1.4.2 // indirect
114
115
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
115
- github.com/go-git/go-billy/v5 v5.5.0 // indirect
116
116
github.com/go-git/go-git/v5 v5.12.0 // indirect
117
117
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
118
118
github.com/go-logr/stdr v1.2.2 // indirect
You can’t perform that action at this time.
0 commit comments