-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v0.1.12
- Loading branch information
Showing
88 changed files
with
3,269 additions
and
1,138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: copy-offload-role | ||
rules: | ||
- apiGroups: | ||
- lus.cray.hpe.com | ||
resources: | ||
- lustrefilesystems | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- dataworkflowservices.github.io | ||
resources: | ||
- workflows | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- dataworkflowservices.github.io | ||
resources: | ||
- clientmounts | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- nnf.cray.hpe.com | ||
resources: | ||
- nnfdatamovementprofiles | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- nnf.cray.hpe.com | ||
resources: | ||
- nnfnodes | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- nnf.cray.hpe.com | ||
resources: | ||
- nnfnodestorages | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- nnf.cray.hpe.com | ||
resources: | ||
- nnfstorages | ||
verbs: | ||
- get | ||
- list | ||
- watch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: copy-offload-rolebinding | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: copy-offload-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: copy-offload | ||
namespace: default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: copy-offload | ||
namespace: default | ||
--- | ||
# As of Kubernetes 1.24, ServiceAccount tokens are no longer automatically | ||
# generated. Instead, manually create the secret and the token key in the | ||
# data field will be automatically set. | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: copy-offload | ||
namespace: default | ||
annotations: | ||
kubernetes.io/service-account.name: copy-offload | ||
kubernetes.io/service-account.namespace: default | ||
type: kubernetes.io/service-account-token |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Value of this field is prepended to the | ||
# names of all resources, e.g. a deployment named | ||
# "wordpress" becomes "alices-wordpress". | ||
# Note that it should also match with the prefix (text before '-') of the namespace | ||
# field above. | ||
namePrefix: nnf-dm- | ||
|
||
resources: | ||
- copy_offload_service_account.yaml | ||
- copy_offload_role.yaml | ||
- copy_offload_role_binding.yaml | ||
|
||
configurations: | ||
- kustomizeconfig.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
namePrefix: | ||
- path: metadata/annotations/kubernetes.io\/service-account.name | ||
namespace: | ||
- path: metadata/annotations/kubernetes.io\/service-account.namespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
resources: | ||
- ../top | ||
|
||
patches: | ||
# Arguments for the controller manager that are specific to dp0 | ||
- path: manager_environment_deploy_patch.yaml |
Oops, something went wrong.