Created
November 10, 2020 20:36
-
-
Save FreedomBen/cc8ee2d351099912a2a235e9a9a3d0d7 to your computer and use it in GitHub Desktop.
Default OpenShift Project Template
This file contains hidden or 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
apiVersion: template.openshift.io/v1 | |
kind: Template | |
metadata: | |
creationTimestamp: null | |
name: project-request | |
objects: | |
- apiVersion: project.openshift.io/v1 | |
kind: Project | |
metadata: | |
annotations: | |
openshift.io/description: ${PROJECT_DESCRIPTION} | |
openshift.io/display-name: ${PROJECT_DISPLAYNAME} | |
openshift.io/requester: ${PROJECT_REQUESTING_USER} | |
creationTimestamp: null | |
name: ${PROJECT_NAME} | |
spec: {} | |
status: {} | |
- apiVersion: rbac.authorization.k8s.io/v1 | |
kind: RoleBinding | |
metadata: | |
creationTimestamp: null | |
name: admin | |
namespace: ${PROJECT_NAME} | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: admin | |
subjects: | |
- apiGroup: rbac.authorization.k8s.io | |
kind: User | |
name: ${PROJECT_ADMIN_USER} | |
parameters: | |
- name: PROJECT_NAME | |
- name: PROJECT_DISPLAYNAME | |
- name: PROJECT_DESCRIPTION | |
- name: PROJECT_ADMIN_USER | |
- name: PROJECT_REQUESTING_USER |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment