Add Arc MIAA delete action back (#11901)

* Add Arc MIAA delete action back

* fix
This commit is contained in:
Charles Gagnon
2020-08-21 14:10:29 -07:00
committed by GitHub
parent b4d61a067e
commit a6efd56844
14 changed files with 259 additions and 253 deletions

View File

@@ -93,7 +93,7 @@ export class PostgresModel extends ResourceModel {
/** Returns the service's Kubernetes namespace */
public get namespace(): string | undefined {
return this.info.namespace;
return ''; // TODO chgagnon return this.info.namespace;
}
/** Returns the service's name */
@@ -103,7 +103,7 @@ export class PostgresModel extends ResourceModel {
/** Returns the service's fully qualified name in the format namespace.name */
public get fullName(): string {
return `${this.info.namespace}.${this.info.name}`;
return `${this.namespace}.${this.name}`;
}
/** Returns the service's spec */