-
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.
Merge pull request #3 from stakater/handle-create-project
Handle create project
- Loading branch information
Showing
14 changed files
with
1,196 additions
and
103 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,4 @@ bin | |
*.swo | ||
*~ | ||
/_output/ | ||
/jira-service-desk-operator |
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,14 @@ | ||
apiVersion: jiraservicedesk.stakater.com/v1alpha1 | ||
kind: Project | ||
metadata: | ||
name: stakater | ||
spec: | ||
name: stakater | ||
key: STK | ||
projectTypeKey: service_desk | ||
projectTemplateKey: com.atlassian.servicedesk:itil-v2-service-desk-project | ||
description: "Sample project for jira-service-desk-operator" | ||
assigneeType: PROJECT_LEAD | ||
leadAccountId: 5ebfbc3ead226b0ba46c3590 | ||
url: https://stakater.com | ||
|
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 |
---|---|---|
@@ -1,12 +1,16 @@ | ||
module github.com/stakater/jira-service-desk-operator | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
require ( | ||
github.com/onsi/ginkgo v1.11.0 | ||
github.com/onsi/gomega v1.8.1 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/go-logr/logr v0.1.0 | ||
github.com/onsi/ginkgo v1.12.0 | ||
github.com/onsi/gomega v1.9.0 | ||
github.com/operator-framework/operator-sdk v0.19.2 | ||
k8s.io/api v0.18.2 | ||
k8s.io/apimachinery v0.18.2 | ||
k8s.io/client-go v0.18.2 | ||
k8s.io/client-go v12.0.0+incompatible | ||
sigs.k8s.io/controller-runtime v0.6.0 | ||
) | ||
|
||
replace k8s.io/client-go => k8s.io/client-go v0.18.2 |
Oops, something went wrong.