Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature. add creator and description #144

Merged
merged 1 commit into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tks-contract/templates/pre-install-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ spec:
id character varying(10) COLLATE pg_catalog."default" primary key,
contractor_name character varying(50) COLLATE pg_catalog."default",
available_services character varying(50)[] COLLATE pg_catalog."default",
creator uuid,
description character varying(100) COLLATE pg_catalog."default",
updated_at timestamp with time zone,
created_at timestamp with time zone
);
Expand Down
4 changes: 4 additions & 0 deletions tks-info/templates/pre-install-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ spec:
min_size_per_az integer,
max_size_per_az integer,
kubeconfig character varying(1000) COLLATE pg_catalog."default",
creator uuid,
description character varying(100) COLLATE pg_catalog."default",
updated_at timestamp with time zone,
created_at timestamp with time zone

Expand All @@ -96,6 +98,8 @@ spec:
status_desc character varying(10000) COLLATE pg_catalog."default",
cluster_id character varying(10) COLLATE pg_catalog."default",
external_label character varying(50) COLLATE pg_catalog."default",
creator uuid,
description character varying(100) COLLATE pg_catalog."default",
updated_at timestamp with time zone,
created_at timestamp with time zone
);
Expand Down