Skip to content

Commit bab0c24

Browse files
committed
build: changed the referenced license
Signed-off-by: Paul Bastide <[email protected]>
1 parent accc452 commit bab0c24

File tree

2 files changed

+23
-14
lines changed

2 files changed

+23
-14
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,31 @@ helm upgrade \
3232
helm uninstall power-dra-driver -n power-dra-driver
3333
```
3434

35+
## License
36+
37+
All source files must include a Copyright and License header. The SPDX license header is
38+
preferred because it can be easily scanned.
39+
40+
If you would like to see the detailed LICENSE click [here](LICENSE).
41+
42+
```text
43+
#
44+
# Copyright 2025 - IBM Corporation. All rights reserved
45+
# SPDX-License-Identifier: Apache-2.0
46+
#
47+
```
48+
3549
## References
3650
1. [Kubernetes: Dynamic Resource Allocation](https://kubernetes.io/docs/concepts/scheduling-eviction/dynamic-resource-allocation/)
3751
2. [Kubernetes: Dynamic Resource Allocation example](https://github.com/kubernetes-sigs/dra-example-driver/blob/main/README.md)
3852
3. [OpenShift Feature Gate: DynamicResourceAllocation](https://docs.openshift.com/container-platform/4.17/nodes/clusters/nodes-cluster-enabling-features.html)
3953
> Enables a new API for requesting and sharing resources between pods and containers. This is an internal feature that most users do not need to interact with. (DynamicResourceAllocation)
4054
OpenShift Docs are specific to a use-case
4155

42-
This code repository is based on [kubernetes-sigs/dra-example-driver](https://github.com/kubernetes-sigs/dra-example-driver) and extends apis used in the example driver.
56+
This code repository is based on [kubernetes-sigs/dra-example-driver](https://github.com/kubernetes-sigs/dra-example-driver) and extends apis used in the example driver.
57+
58+
# Support
59+
60+
> Is this a Red Hat or IBM supported solution?
61+
62+
This solution is used to demonstrate accessing the co-processors part of the IBM Power systems. It is a demonstration at this time.

cmd/power-dra-kubeletplugin/driver.go

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,6 @@
11
/*
2-
* Copyright 2023 The Kubernetes Authors.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
2+
* Copyright 2025 - IBM Corporation. All rights reserved
3+
* SPDX-License-Identifier: Apache-2.0
154
*/
165

176
package main

0 commit comments

Comments
 (0)