-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1825f4b
commit c5379b6
Showing
14 changed files
with
739 additions
and
28 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...e/manifests/jira-service-desk-operator-controller-manager-metrics-service_v1_service.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,16 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
control-plane: controller-manager | ||
name: jira-service-desk-operator-controller-manager-metrics-service | ||
spec: | ||
ports: | ||
- name: https | ||
port: 8443 | ||
targetPort: https | ||
selector: | ||
control-plane: controller-manager | ||
status: | ||
loadBalancer: {} |
5 changes: 5 additions & 0 deletions
5
bundle/manifests/jira-service-desk-operator-controller-manager_v1_serviceaccount.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,5 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
creationTimestamp: null | ||
name: jira-service-desk-operator-controller-manager |
17 changes: 17 additions & 0 deletions
17
bundle/manifests/jira-service-desk-operator-manager-config_v1_configmap.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,17 @@ | ||
apiVersion: v1 | ||
data: | ||
controller_manager_config.yaml: | | ||
apiVersion: controller-runtime.sigs.k8s.io/v1alpha1 | ||
kind: ControllerManagerConfig | ||
health: | ||
healthProbeBindAddress: :8081 | ||
metrics: | ||
bindAddress: 127.0.0.1:8080 | ||
webhook: | ||
port: 9443 | ||
leaderElection: | ||
leaderElect: true | ||
resourceName: 48610e2b.stakater.com | ||
kind: ConfigMap | ||
metadata: | ||
name: jira-service-desk-operator-manager-config |
10 changes: 10 additions & 0 deletions
10
...s/jira-service-desk-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.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,10 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
name: jira-service-desk-operator-metrics-reader | ||
rules: | ||
- nonResourceURLs: | ||
- /metrics | ||
verbs: | ||
- get |
248 changes: 248 additions & 0 deletions
248
bundle/manifests/jira-service-desk-operator.clusterserviceversion.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,248 @@ | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: ClusterServiceVersion | ||
metadata: | ||
annotations: | ||
alm-examples: |- | ||
[ | ||
{ | ||
"apiVersion": "jiraservicedesk.stakater.com/v1alpha1", | ||
"kind": "Customer", | ||
"metadata": { | ||
"name": "customer" | ||
}, | ||
"spec": { | ||
"email": "[email protected]", | ||
"name": "sample", | ||
"projects": [ | ||
"TEST1", | ||
"TEST2" | ||
] | ||
} | ||
}, | ||
{ | ||
"apiVersion": "jiraservicedesk.stakater.com/v1alpha1", | ||
"kind": "Project", | ||
"metadata": { | ||
"name": "stakater" | ||
}, | ||
"spec": { | ||
"assigneeType": "PROJECT_LEAD", | ||
"description": "Sample project for jira-service-desk-operator", | ||
"key": "STK", | ||
"leadAccountId": "5ebfbc3ead226b0ba46c3590", | ||
"name": "stakater", | ||
"projectTemplateKey": "com.atlassian.servicedesk:itil-v2-service-desk-project", | ||
"projectTypeKey": "service_desk", | ||
"url": "https://stakater.com" | ||
} | ||
} | ||
] | ||
capabilities: Basic Install | ||
operators.operatorframework.io/builder: operator-sdk-v1.7.1+git | ||
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3 | ||
name: jira-service-desk-operator.v0.0.44 | ||
namespace: placeholder | ||
spec: | ||
apiservicedefinitions: {} | ||
customresourcedefinitions: | ||
owned: | ||
- description: Customer is the Schema for the customers API | ||
displayName: Customer | ||
kind: Customer | ||
name: customers.jiraservicedesk.stakater.com | ||
version: v1alpha1 | ||
- description: Project is the Schema for the projects API | ||
displayName: Project | ||
kind: Project | ||
name: projects.jiraservicedesk.stakater.com | ||
version: v1alpha1 | ||
description: Kubernetes operator for Jira Service Desk | ||
displayName: jira-service-desk-operator | ||
icon: | ||
- base64data: "" | ||
mediatype: "" | ||
install: | ||
spec: | ||
clusterPermissions: | ||
- rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- secrets | ||
verbs: | ||
- get | ||
- list | ||
- apiGroups: | ||
- jiraservicedesk.stakater.com | ||
resources: | ||
- customers | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- jiraservicedesk.stakater.com | ||
resources: | ||
- customers/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- jiraservicedesk.stakater.com | ||
resources: | ||
- projects | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- jiraservicedesk.stakater.com | ||
resources: | ||
- projects/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- authentication.k8s.io | ||
resources: | ||
- tokenreviews | ||
verbs: | ||
- create | ||
- apiGroups: | ||
- authorization.k8s.io | ||
resources: | ||
- subjectaccessreviews | ||
verbs: | ||
- create | ||
serviceAccountName: jira-service-desk-operator-controller-manager | ||
deployments: | ||
- name: jira-service-desk-operator-controller-manager | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
control-plane: controller-manager | ||
strategy: {} | ||
template: | ||
metadata: | ||
labels: | ||
control-plane: controller-manager | ||
spec: | ||
containers: | ||
- args: | ||
- --secure-listen-address=0.0.0.0:8443 | ||
- --upstream=http://127.0.0.1:8080/ | ||
- --logtostderr=true | ||
- --v=10 | ||
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0 | ||
name: kube-rbac-proxy | ||
ports: | ||
- containerPort: 8443 | ||
name: https | ||
resources: {} | ||
- args: | ||
- --health-probe-bind-address=:8081 | ||
- --metrics-bind-address=127.0.0.1:8080 | ||
- --leader-elect | ||
command: | ||
- /manager | ||
image: stakater/jira-service-desk-operator:v0.0.44 | ||
livenessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: 8081 | ||
initialDelaySeconds: 15 | ||
periodSeconds: 20 | ||
name: manager | ||
readinessProbe: | ||
httpGet: | ||
path: /readyz | ||
port: 8081 | ||
initialDelaySeconds: 5 | ||
periodSeconds: 10 | ||
resources: | ||
limits: | ||
cpu: 100m | ||
memory: 30Mi | ||
requests: | ||
cpu: 100m | ||
memory: 20Mi | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
securityContext: | ||
runAsNonRoot: true | ||
serviceAccountName: jira-service-desk-operator-controller-manager | ||
terminationGracePeriodSeconds: 10 | ||
permissions: | ||
- rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- create | ||
- update | ||
- patch | ||
- delete | ||
- apiGroups: | ||
- coordination.k8s.io | ||
resources: | ||
- leases | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- create | ||
- update | ||
- patch | ||
- delete | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- events | ||
verbs: | ||
- create | ||
- patch | ||
serviceAccountName: jira-service-desk-operator-controller-manager | ||
strategy: deployment | ||
installModes: | ||
- supported: false | ||
type: OwnNamespace | ||
- supported: false | ||
type: SingleNamespace | ||
- supported: false | ||
type: MultiNamespace | ||
- supported: true | ||
type: AllNamespaces | ||
keywords: | ||
- jira | ||
- service desk | ||
- operator | ||
- openshift | ||
- kubernetes | ||
links: | ||
- name: Jira Service Desk Operator | ||
url: https://jira-service-desk-operator.domain | ||
maintainers: | ||
- email: [email protected] | ||
name: stakater | ||
- email: [email protected] | ||
name: ahmedwaleedmalik | ||
maturity: alpha | ||
provider: | ||
name: stakater | ||
url: https://stakater.com | ||
version: 0.0.44 |
Oops, something went wrong.