diff --git a/scripts/sql/91_create_chart_metadata.up.sql b/scripts/sql/91_create_chart_metadata.up.sql index af3cf63870..fd5b1e9d53 100644 --- a/scripts/sql/91_create_chart_metadata.up.sql +++ b/scripts/sql/91_create_chart_metadata.up.sql @@ -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.') \ No newline at end of file + ('Deployment', 'Chart to deploy a Deployment that runs multiple replicas of your application and automatically replaces any instances that fail or become unresponsive.'); \ No newline at end of file