Previously, the spec doesn't update the package status if nothing in the spec file changed. Due to this, the failed package will always stay in the failed state. This PR adds a check to see whether a package is in the failed state. If yes, then changes the state to pending for builder manager to rebuild it.
40 lines
624 B
YAML
40 lines
624 B
YAML
kind: ArchiveUploadSpec
|
|
name: hello-go
|
|
include:
|
|
- hello.go
|
|
|
|
---
|
|
apiVersion: fission.io/v1
|
|
kind: Package
|
|
metadata:
|
|
creationTimestamp: null
|
|
name: hello-go-pkg
|
|
namespace: default
|
|
spec:
|
|
environment:
|
|
name: go
|
|
namespace: default
|
|
source:
|
|
type: url
|
|
url: archive://hello-go
|
|
status:
|
|
buildstatus: pending
|
|
|
|
---
|
|
apiVersion: fission.io/v1
|
|
kind: Function
|
|
metadata:
|
|
creationTimestamp: null
|
|
name: hello-go
|
|
namespace: default
|
|
spec:
|
|
environment:
|
|
name: go
|
|
namespace: default
|
|
functionTimeout: 60
|
|
package:
|
|
functionName: Handler
|
|
packageref:
|
|
name: hello-go-pkg
|
|
namespace: default
|