address review comments
Signed-off-by: Jonah Back <jonah@jonahback.com>
This commit is contained in:
@@ -14,6 +14,17 @@ export interface AlphaEntity extends Entity {
|
||||
// @public
|
||||
export const ANNOTATION_EDIT_URL = 'backstage.io/edit-url';
|
||||
|
||||
// @public
|
||||
export const ANNOTATION_KUBERNETES_API_SERVER = 'kubernetes.io/api-server';
|
||||
|
||||
// @public
|
||||
export const ANNOTATION_KUBERNETES_API_SERVER_CA =
|
||||
'kubernetes.io/api-server-certificate-authority';
|
||||
|
||||
// @public
|
||||
export const ANNOTATION_KUBERNETES_AUTH_PROVIDER =
|
||||
'kubernetes.io/auth-provider';
|
||||
|
||||
// @public
|
||||
export const ANNOTATION_LOCATION = 'backstage.io/managed-by-location';
|
||||
|
||||
|
||||
@@ -32,8 +32,8 @@ const ARN_ANNOTATION: string = 'amazonaws.com/arn';
|
||||
export class AwsEKSClusterProcessor implements CatalogProcessor {
|
||||
private credentialsFactory?: AWSCredentialFactory;
|
||||
|
||||
constructor(credentialsFactory?: AWSCredentialFactory) {
|
||||
this.credentialsFactory = credentialsFactory;
|
||||
constructor(options: { credentialsFactory?: AWSCredentialFactory }) {
|
||||
this.credentialsFactory = options.credentialsFactory;
|
||||
}
|
||||
|
||||
getProcessorName(): string {
|
||||
|
||||
Reference in New Issue
Block a user