mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
52 lines
1.1 KiB
TypeScript
52 lines
1.1 KiB
TypeScript
import { KubeObject } from "../kube-object";
|
|
import { KubeJsonApiData } from "../kube-json-api";
|
|
import { autobind } from "../../utils";
|
|
import { KubeApi } from "../kube-api";
|
|
|
|
export enum SecretType {
|
|
Opaque = "Opaque",
|
|
ServiceAccountToken = "kubernetes.io/service-account-token",
|
|
Dockercfg = "kubernetes.io/dockercfg",
|
|
DockerConfigJson = "kubernetes.io/dockerconfigjson",
|
|
BasicAuth = "kubernetes.io/basic-auth",
|
|
SSHAuth = "kubernetes.io/ssh-auth",
|
|
TLS = "kubernetes.io/tls",
|
|
BootstrapToken = "bootstrap.kubernetes.io/token",
|
|
}
|
|
|
|
export interface ISecretRef {
|
|
key?: string;
|
|
name: string;
|
|
}
|
|
|
|
@autobind()
|
|
export class Secret extends KubeObject {
|
|
static kind = "Secret"
|
|
|
|
type: SecretType;
|
|
data: {
|
|
[prop: string]: string;
|
|
token?: string;
|
|
}
|
|
|
|
constructor(data: KubeJsonApiData) {
|
|
super(data);
|
|
this.data = this.data || {};
|
|
}
|
|
|
|
getKeys(): string[] {
|
|
return Object.keys(this.data);
|
|
}
|
|
|
|
getToken() {
|
|
return this.data.token;
|
|
}
|
|
}
|
|
|
|
export const secretsApi = new KubeApi({
|
|
kind: Secret.kind,
|
|
apiBase: "/api/v1/secrets",
|
|
isNamespaced: true,
|
|
objectConstructor: Secret,
|
|
});
|