Skip to content
Merged
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
8 changes: 4 additions & 4 deletions scripts/sql/91_create_chart_metadata.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ CREATE TABLE "public"."chart_ref_metadata" (

---Inserting Records-----
INSERT INTO "chart_ref_metadata" ("chart_name", "chart_description") VALUES
('Rollout Deployment', 'Chart to deploy an advanced version of Deployment that supports blue-green and canary deployments. It requires a rollout controller to run inside the cluster to function.')
('Rollout Deployment', 'Chart to deploy an advanced version of Deployment that supports blue-green and canary deployments. It requires a rollout controller to run inside the cluster to function.');
INSERT INTO "chart_ref_metadata" ("chart_name", "chart_description") VALUES
('CronJob & Job', 'Chart to deploy a Job/CronJob. Job is a controller object that represents a finite task and CronJob can be used to schedule creation of Jobs.')
('CronJob & Job', 'Chart to deploy a Job/CronJob. Job is a controller object that represents a finite task and CronJob can be used to schedule creation of Jobs.');
INSERT INTO "chart_ref_metadata" ("chart_name", "chart_description") VALUES
('Knative', 'Chart to deploy an Open-Source Enterprise-level solution to deploy Serverless apps.')
('Knative', 'Chart to deploy an Open-Source Enterprise-level solution to deploy Serverless apps.');
INSERT INTO "chart_ref_metadata" ("chart_name", "chart_description") VALUES
('Deployment', 'Chart to deploy a Deployment that runs multiple replicas of your application and automatically replaces any instances that fail or become unresponsive.')
('Deployment', 'Chart to deploy a Deployment that runs multiple replicas of your application and automatically replaces any instances that fail or become unresponsive.');