Skip to content

Commit

Permalink
Typos (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
odysseu authored Feb 7, 2024
1 parent b52167e commit d16dbd8
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import io.swagger.v3.oas.annotations.media.Schema;

@JsonIgnoreProperties(ignoreUnknown = true)
@Schema(description = "Paramètre de création d'un service")
@Schema(description = "Parameter for service creation")
public class CreateServiceDTO {
@Schema(
description = "Catalog where the package of the service is taken from.",
Expand All @@ -13,23 +13,21 @@ public class CreateServiceDTO {

@Schema(
description =
"Helm package that will be used to create the service, sert à récupérer le package (vérif package)",
"Helm package that will be used to create the service, necessary for package recovering (verify package)",
required = true)
String packageName;

@Schema(
description =
"Version of the helm package, passe la version dans la création, si pas null")
@Schema(description = "Version of the helm package, put version into creation, if not null")
String packageVersion;

@Schema(description = "A chosen name for the service, si null un nom est généré par helm")
@Schema(description = "A chosen name for the service, if null a name is generated by helm")
String name;

@Schema(description = "Contenu du values.yaml", required = true)
@Schema(description = "Content of values.yaml", required = true)
Object options;

@Schema(
description = "when true nothing is run (mode dry run de helm) faux par défaut",
description = "When true, nothing is run (helm dry run mode), false by default",
defaultValue = "false")
boolean dryRun = false;

Expand Down

0 comments on commit d16dbd8

Please sign in to comment.