Skip to content
GitLab
Next
Projects
Groups
Snippets
Help
Loading...
Help
What's new
6
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
GitLab Operator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
28
Issues
28
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
6
Merge Requests
6
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GitLab.org
OpenShift
GitLab Operator
Commits
6f2dcf23
Commit
6f2dcf23
authored
Sep 14, 2020
by
Edmund Ochieng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add new manifests directory structure
parent
3f3d98d8
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
680 additions
and
6 deletions
+680
-6
.gitignore
.gitignore
+0
-1
Makefile
Makefile
+0
-5
bundle/manifests/gitlab-operator-leader-election-role_rbac.authorization.k8s.io_v1_role.yaml
...ader-election-role_rbac.authorization.k8s.io_v1_role.yaml
+34
-0
bundle/manifests/gitlab-operator-leader-election-rolebinding_rbac.authorization.k8s.io_v1_rolebinding.yaml
...rolebinding_rbac.authorization.k8s.io_v1_rolebinding.yaml
+14
-0
bundle/manifests/gitlab-operator-manager-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
...anager-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
+210
-0
bundle/manifests/gitlab-operator-manager-rolebinding_rbac.authorization.k8s.io_v1_clusterrolebinding.yaml
...ding_rbac.authorization.k8s.io_v1_clusterrolebinding.yaml
+13
-0
bundle/manifests/gitlab-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml
...reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml
+10
-0
bundle/manifests/gitlab-operator-proxy-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
...-proxy-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
+18
-0
bundle/manifests/gitlab-operator-proxy-rolebinding_rbac.authorization.k8s.io_v1_clusterrolebinding.yaml
...ding_rbac.authorization.k8s.io_v1_clusterrolebinding.yaml
+13
-0
config/manifests/bases/gitlab-operator.clusterserviceversion.yaml
...anifests/bases/gitlab-operator.clusterserviceversion.yaml
+364
-0
config/manifests/kustomization.yaml
config/manifests/kustomization.yaml
+4
-0
No files found.
.gitignore
View file @
6f2dcf23
# Generated manager Golang binary
bin/manager
config/manifests/*.yaml
# Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
### Emacs ###
# -*- mode: gitignore; -*-
...
...
Makefile
View file @
6f2dcf23
...
...
@@ -118,8 +118,3 @@ bundle: manifests
.PHONY
:
bundle-build
bundle-build
:
podman build
-f
bundle.Dockerfile
-t
$(BUNDLE_IMG)
.
# Generate install manifests
deploy-manifests
:
rm
-f
config/manifests/
*
.yaml
kustomize build
--output
config/manifests config/default
bundle/manifests/gitlab-operator-leader-election-role_rbac.authorization.k8s.io_v1_role.yaml
0 → 100644
View file @
6f2dcf23
apiVersion
:
rbac.authorization.k8s.io/v1
kind
:
Role
metadata
:
creationTimestamp
:
null
name
:
gitlab-operator-leader-election-role
namespace
:
gitlab-operator-system
rules
:
-
apiGroups
:
-
"
"
resources
:
-
configmaps
verbs
:
-
get
-
list
-
watch
-
create
-
update
-
patch
-
delete
-
apiGroups
:
-
"
"
resources
:
-
configmaps/status
verbs
:
-
get
-
update
-
patch
-
apiGroups
:
-
"
"
resources
:
-
events
verbs
:
-
create
-
patch
bundle/manifests/gitlab-operator-leader-election-rolebinding_rbac.authorization.k8s.io_v1_rolebinding.yaml
0 → 100644
View file @
6f2dcf23
apiVersion
:
rbac.authorization.k8s.io/v1
kind
:
RoleBinding
metadata
:
creationTimestamp
:
null
name
:
gitlab-operator-leader-election-rolebinding
namespace
:
gitlab-operator-system
roleRef
:
apiGroup
:
rbac.authorization.k8s.io
kind
:
Role
name
:
gitlab-operator-leader-election-role
subjects
:
-
kind
:
ServiceAccount
name
:
default
namespace
:
gitlab-operator-system
bundle/manifests/gitlab-operator-manager-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
0 → 100644
View file @
6f2dcf23
apiVersion
:
rbac.authorization.k8s.io/v1
kind
:
ClusterRole
metadata
:
creationTimestamp
:
null
name
:
gitlab-operator-manager-role
rules
:
-
apiGroups
:
-
apps
resources
:
-
deployments
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
apps
resources
:
-
statefulsets
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
apps.gitlab.com
resources
:
-
gitlabs
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
apps.gitlab.com
resources
:
-
gitlabs/status
verbs
:
-
get
-
patch
-
update
-
apiGroups
:
-
apps.gitlab.com
resources
:
-
glbackups
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
apps.gitlab.com
resources
:
-
glbackups/status
verbs
:
-
get
-
patch
-
update
-
apiGroups
:
-
apps.gitlab.com
resources
:
-
runners
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
apps.gitlab.com
resources
:
-
runners/status
verbs
:
-
get
-
patch
-
update
-
apiGroups
:
-
autoscaling
resources
:
-
horizontalpodautoscalers
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
batch
resources
:
-
jobs
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
"
"
resources
:
-
configmaps
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
"
"
resources
:
-
cronjobs
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
"
"
resources
:
-
persistentvolumeclaims
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
"
"
resources
:
-
secrets
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
"
"
resources
:
-
services
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
extensions
resources
:
-
ingresses
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
monitoring.coreos.com
resources
:
-
prometheuses
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
-
apiGroups
:
-
monitoring.coreos.com
resources
:
-
servicemonitors
verbs
:
-
create
-
delete
-
get
-
list
-
patch
-
update
-
watch
bundle/manifests/gitlab-operator-manager-rolebinding_rbac.authorization.k8s.io_v1_clusterrolebinding.yaml
0 → 100644
View file @
6f2dcf23
apiVersion
:
rbac.authorization.k8s.io/v1
kind
:
ClusterRoleBinding
metadata
:
creationTimestamp
:
null
name
:
gitlab-operator-manager-rolebinding
roleRef
:
apiGroup
:
rbac.authorization.k8s.io
kind
:
ClusterRole
name
:
gitlab-operator-manager-role
subjects
:
-
kind
:
ServiceAccount
name
:
default
namespace
:
gitlab-operator-system
bundle/manifests/gitlab-operator-metrics-reader_rbac.authorization.k8s.io_v1beta1_clusterrole.yaml
0 → 100644
View file @
6f2dcf23
apiVersion
:
rbac.authorization.k8s.io/v1beta1
kind
:
ClusterRole
metadata
:
creationTimestamp
:
null
name
:
gitlab-operator-metrics-reader
rules
:
-
nonResourceURLs
:
-
/metrics
verbs
:
-
get
bundle/manifests/gitlab-operator-proxy-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
0 → 100644
View file @
6f2dcf23
apiVersion
:
rbac.authorization.k8s.io/v1
kind
:
ClusterRole
metadata
:
creationTimestamp
:
null
name
:
gitlab-operator-proxy-role
rules
:
-
apiGroups
:
-
authentication.k8s.io
resources
:
-
tokenreviews
verbs
:
-
create
-
apiGroups
:
-
authorization.k8s.io
resources
:
-
subjectaccessreviews
verbs
:
-
create
bundle/manifests/gitlab-operator-proxy-rolebinding_rbac.authorization.k8s.io_v1_clusterrolebinding.yaml
0 → 100644
View file @
6f2dcf23
apiVersion
:
rbac.authorization.k8s.io/v1
kind
:
ClusterRoleBinding
metadata
:
creationTimestamp
:
null
name
:
gitlab-operator-proxy-rolebinding
roleRef
:
apiGroup
:
rbac.authorization.k8s.io
kind
:
ClusterRole
name
:
gitlab-operator-proxy-role
subjects
:
-
kind
:
ServiceAccount
name
:
default
namespace
:
gitlab-operator-system
config/manifests/bases/gitlab-operator.clusterserviceversion.yaml
0 → 100644
View file @
6f2dcf23
This diff is collapsed.
Click to expand it.
config/manifests/kustomization.yaml
0 → 100644
View file @
6f2dcf23
resources
:
-
../default
-
../samples
-
../scorecard
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment