-
Notifications
You must be signed in to change notification settings - Fork 209
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integration with JIRA #3498
Comments
And I found this module Feature Flag |
There is some other ideas related to this issue https://github.com/orgs/flipt-io/discussions/3042 |
Going deeper on how we can easily integrate with Jira I've found out there's two ways for creating an app:
For this case I think the later is better and for now we just have the Feature Flag module for Connect apps. They have some tools for building one but don't have any for Go: Connect frameworks and tools.
|
To start, all we need to do is create an endpoint to serve a configuration file: {
"name": "Hello World",
"description": "Atlassian Connect app",
"key": "com.example.myapp",
"baseUrl": "https://<placeholder-url>",
"vendor": {
"name": "Example, Inc.",
"url": "http://example.com"
},
"authentication": {
"type": "none"
},
"apiVersion": 1,
"modules": {
"jiraFeatureFlagInfoProvider": {
"homeUrl": "https://myfeatureflagprovider.com",
"logoUrl": "https://myfeatureflagprovider.com/images/logo.svg",
"documentationUrl": "https://myfeatureflagprovider.com/docs/jira-integration",
"actions": {
"createFlag": {
"templateUrl": "https://myfeatureflagprovider.com/integration/jira/create?issueKey={issue.key}"
},
"linkFlag": {
"templateUrl": "https://myfeatureflagprovider.com/integration/jira/link?issueKey={issue.key}"
},
"listFlags": {
"templateUrl": "https://myfeatureflagprovider.com/integration/jira/flags?issueKey={issue.key}"
}
},
"name": {
"value": "My Feature Flag Provider"
},
"key": "featureflag-integration"
}
}
} As Flipt can be deployed on-premisse and in different ways I'd also say this should be generated based on configurations like the base url and even the name (to allow differentiation between environments) |
Problem
Hi, it's me! It has been a while that I don't show up here 😄
I recently I was exploring JIRA and the developers tool we can integrate with and it has some integrations for Feature Flag services like this one for LaunchDarkly! It might be a great addition to Flipt, I just don't exaclty how to develop this but there're some documentation: Build a Jira hello world app
Ideal Solution
Jira integration with Flipt where we can specify feature flags and take some actions over them (maybe not all)! There's also this documentation from LaunchDarkly about how to configure and explaning some integration aspects: https://docs.launchdarkly.com/integrations/jira
Search
Additional Context
No response
The text was updated successfully, but these errors were encountered: