Add config schema

Signed-off-by: Andrew Shirley <andrew.shirley@sainsburys.co.uk>
Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
Andrew Shirley
2021-06-04 12:22:57 +01:00
committed by blam
parent 66ebdb34d1
commit 8c1812de5f
2 changed files with 54 additions and 1 deletions
+51
View File
@@ -0,0 +1,51 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export interface Config {
jenkins?: {
/**
* Default instance baseUrl, can be specified on a named instance called "default"
* @pattern "^https?://"
*/
baseUrl?: string;
/**
* Default instance username, can be specified on a named instance called "default"
*/
username?: string;
/**
* Default Instance apiKey, can be specified on a named instance called "default"
* @visibility secret
*/
apiKey?: string;
instances?: {
/**
* Name of the instance, this will be used in an annotation on catalog entities to refer to jobs on this instance.
*
* Use a name of "default" to specify the jenkins instance details if the annotation doesn't explicitly name an
* instance.
*/
name: string;
/**
* @pattern "^https?://"
*/
baseUrl: string;
username: string;
/** @visibility secret */
apiKey: string;
}[];
};
}
+3 -1
View File
@@ -10,6 +10,7 @@
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"configSchema": "config.d.ts",
"scripts": {
"start": "backstage-cli backend:dev",
"build": "backstage-cli backend:build",
@@ -41,6 +42,7 @@
"supertest": "^4.0.2"
},
"files": [
"dist"
"dist",
"config.d.ts"
]
}