-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make all backend plugins dynamic (#954)
* feat: make `kiali-backend` dynamic Signed-off-by: David Festal <[email protected]> * feat: make `kubernetes-actions` dynamic Signed-off-by: David Festal <[email protected]> * feat: make `matomo-backend` dynamic Signed-off-by: David Festal <[email protected]> * feat: make `quay-actions` dynamic Signed-off-by: David Festal <[email protected]> * feat: make `regex-actions` dynamic Signed-off-by: David Festal <[email protected]> * feat: make `servicenow-actions` dynamic Signed-off-by: David Festal <[email protected]> * feat: make `sonarqube-actions` dynamic Signed-off-by: David Festal <[email protected]> --------- Signed-off-by: David Festal <[email protected]>
- Loading branch information
1 parent
c8c6967
commit 1b4338a
Showing
44 changed files
with
3,182 additions
and
17 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
catalog: | ||
providers: | ||
# highlight-add-start | ||
kiali: | ||
# Required. Kiali endpoint | ||
url: ${KIALI_ENDPOINT} | ||
# Required. Kiali authentication. Supported anonymous and token | ||
strategy: ${KIALI_AUTH_STRATEGY} | ||
# Optional. Required by token authentication | ||
serviceAccountToken: ${KIALI_SERVICE_ACCOUNT_TOKEN} | ||
# Optional. defaults false | ||
skipTLSVerify: true | ||
# Optional | ||
caData: ${KIALI_CONFIG_CA_DATA} | ||
# Optional. Local path to CA file | ||
caFile: '' | ||
# Optional. Time in seconds that session is enabled, defaults to 1 minute. | ||
sessionTime: 60 | ||
# highlight-add-end |
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,62 @@ | ||
{ | ||
"name": "@janus-idp/backstage-plugin-kiali-backend-dynamic", | ||
"version": "1.5.3", | ||
"main": "dist/index.cjs.js", | ||
"types": "dist/index.d.ts", | ||
"license": "Apache-2.0", | ||
"publishConfig": { | ||
"access": "public", | ||
"main": "dist/index.cjs.js", | ||
"types": "dist/index.d.ts" | ||
}, | ||
"backstage": { | ||
"role": "backend-plugin" | ||
}, | ||
"scripts": { | ||
"start": "backstage-cli package start", | ||
"build": "backstage-cli package build", | ||
"tsc": "tsc", | ||
"lint": "backstage-cli package lint", | ||
"test": "backstage-cli package test --passWithNoTests --coverage", | ||
"clean": "backstage-cli package clean", | ||
"prepack": "backstage-cli package prepack", | ||
"postpack": "backstage-cli package postpack", | ||
"export-dynamic": "janus-cli package export-dynamic-plugin" | ||
}, | ||
"configSchema": "config.d.ts", | ||
"dependencies": { | ||
"axios": "^1.6.0", | ||
"express": "^4.18.2", | ||
"express-promise-router": "^4.1.1", | ||
"moment": "^2.29.4", | ||
"winston": "^3.11.0", | ||
"yn": "^4.0.0", | ||
"deep-freeze": "^0.0.1" | ||
}, | ||
"devDependencies": {}, | ||
"files": [ | ||
"dist", | ||
"config.d.ts", | ||
"app-config.janus-idp.yaml" | ||
], | ||
"bundleDependencies": true, | ||
"peerDependencies": { | ||
"@backstage/backend-common": "^0.19.8", | ||
"@backstage/backend-plugin-api": "^0.6.6", | ||
"@backstage/catalog-client": "^1.4.5", | ||
"@backstage/catalog-model": "^1.4.3", | ||
"@backstage/config": "^1.1.1", | ||
"@backstage/errors": "^1.2.3", | ||
"@backstage/plugin-auth-node": "^0.4.0", | ||
"@backstage/plugin-catalog-node": "^1.4.7", | ||
"@backstage/backend-plugin-manager": "npm:@janus-idp/[email protected]" | ||
}, | ||
"overrides": { | ||
"@aws-sdk/util-utf8-browser": { | ||
"@smithy/util-utf8": "^2.0.0" | ||
} | ||
}, | ||
"resolutions": { | ||
"@aws-sdk/util-utf8-browser": "npm:@smithy/util-utf8@~2" | ||
} | ||
} |
Oops, something went wrong.