mirror of
https://github.com/intel/intel-device-plugins-for-kubernetes.git
synced 2025-06-03 03:59:37 +00:00
Merge pull request #1986 from hj-johannes-lee/PR-2025-001
operator: fix outdated information
This commit is contained in:
commit
6b007efb76
4
DEVEL.md
4
DEVEL.md
@ -127,8 +127,10 @@ There are few useful steps when working with changes to Device Plugins CRDs and
|
||||
### Publish a New Version of the Intel Device Plugins Operator to operatorhub.io
|
||||
|
||||
Check if the fields mentioned below in the [base CSV manifest file](deployments/operator/manifests/bases/intel-device-plugins-operator.clusterserviceversion.yaml) have the correct values. If not, fix them manually (operator-sdk does not support updating these fields in any other way).
|
||||
- spec.maturity
|
||||
- spec.version
|
||||
- spec.replaces
|
||||
- metadata.annotations.capabilities
|
||||
- metadata.annotations.containerImage
|
||||
- metadata.annotations.createdAT
|
||||
|
||||
@ -141,7 +143,7 @@ $ git clone https://github.com/<GitHub Username>/community-operators
|
||||
|
||||
Generate bundle and build bundle image:
|
||||
```
|
||||
$ make bundle TAG=0.X.Y CHANNELS=alpha DEFAULT_CHANNEL=alpha
|
||||
$ make bundle TAG=0.X.Y CHANNELS=stable DEFAULT_CHANNEL=stable
|
||||
$ make bundle-build
|
||||
```
|
||||
|
||||
|
2
Makefile
2
Makefile
@ -126,7 +126,7 @@ bundle:
|
||||
rm manifests/*service.yaml
|
||||
rm manifests/*clusterrole.yaml
|
||||
# Put generated files in a directory
|
||||
mv manifests metadata tests bundle.Dockerfile $(BUNDLE_DIR)
|
||||
mv manifests metadata bundle.Dockerfile $(BUNDLE_DIR)
|
||||
$(OPERATOR_SDK) bundle validate $(BUNDLE_DIR)/
|
||||
|
||||
bundle-build:
|
||||
|
2
PROJECT
2
PROJECT
@ -1,5 +1,5 @@
|
||||
domain: intel.com
|
||||
layout: go.kubebuilder.io/v2
|
||||
layout: go.kubebuilder.io/v4
|
||||
multigroup: true
|
||||
projectName: intel-device-plugins-operator
|
||||
repo: github.com/intel/intel-device-plugins-for-kubernetes
|
||||
|
@ -3,7 +3,7 @@ kind: ClusterServiceVersion
|
||||
metadata:
|
||||
annotations:
|
||||
alm-examples: '[]'
|
||||
capabilities: Seamless Upgrades
|
||||
capabilities: Full Lifecycle
|
||||
categories: Drivers and plugins
|
||||
containerImage: docker.io/intel/intel-deviceplugin-operator:0.25.0
|
||||
createdAt: "2022-11-09"
|
||||
@ -11,7 +11,7 @@ metadata:
|
||||
serve the installation and lifecycle management of Intel device plugins for
|
||||
Kubernetes.
|
||||
operators.operatorframework.io/builder: operator-sdk-v1.25.0
|
||||
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
|
||||
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
|
||||
repository: https://github.com/intel/intel-device-plugins-for-kubernetes
|
||||
name: intel-device-plugins-operator.v0.25.0
|
||||
namespace: placeholder
|
||||
@ -117,7 +117,7 @@ spec:
|
||||
name: Hyeongju Lee
|
||||
- email: mikko.ylinen@intel.com
|
||||
name: Mikko Ylinen
|
||||
maturity: alpha
|
||||
maturity: stable
|
||||
minKubeVersion: 1.21.0
|
||||
provider:
|
||||
name: Intel® Corporation
|
||||
|
@ -1,4 +1,3 @@
|
||||
resources:
|
||||
- ../default
|
||||
- ../samples
|
||||
- ../scorecard
|
||||
|
Loading…
Reference in New Issue
Block a user