Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.24'
go-version: '1.25'
- name: Cache Operator SDK ${{ env.OPERATOR_SDK_VERSION }}
uses: actions/cache@v4
id: cache-operator-sdk
Expand Down
3 changes: 2 additions & 1 deletion api/v1alpha1/snapshot_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ type SnapshotComponent struct {

// Version is the component verison. Only required if multiple versions of the same
// Component are in the Snapshot
Version string `json:"version"`
// +optional
Version string `json:"version,omitempty"`

// ContainerImage is the container image to use when deploying the component, as part of a Snapshot
ContainerImage string `json:"containerImage"`
Expand Down
1 change: 0 additions & 1 deletion config/crd/bases/appstudio.redhat.com_snapshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,6 @@ spec:
required:
- containerImage
- name
- version
type: object
type: array
displayDescription:
Expand Down
1 change: 0 additions & 1 deletion manifests/application-api-customresourcedefinitions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3862,7 +3862,6 @@ spec:
required:
- containerImage
- name
- version
type: object
type: array
displayDescription:
Expand Down
Loading