|
339 | 339 | "parameters": [
|
340 | 340 | {
|
341 | 341 | "name": "MEMORY_LIMIT",
|
342 |
| - "displayName": "Memory limit", |
343 |
| - "description": "Maximum amount of memory the Django container can use", |
| 342 | + "displayName": "Memory Limit", |
| 343 | + "description": "Maximum amount of memory the Django container can use.", |
344 | 344 | "value": "512Mi"
|
345 | 345 | },
|
346 | 346 | {
|
347 | 347 | "name": "MEMORY_POSTGRESQL_LIMIT",
|
348 |
| - "displayName": "Memory limit", |
349 |
| - "description": "Maximum amount of memory the PostgreSQL container can use", |
| 348 | + "displayName": "Memory Limit (PostgreSQL)", |
| 349 | + "description": "Maximum amount of memory the PostgreSQL container can use.", |
350 | 350 | "value": "512Mi"
|
351 | 351 | },
|
352 | 352 | {
|
353 | 353 | "name": "SOURCE_REPOSITORY_URL",
|
354 |
| - "displayName": "Source repository URL", |
355 |
| - "description": "The URL of the repository with your application source code", |
| 354 | + "displayName": "Git Repository URL", |
| 355 | + "description": "The URL of the repository with your application source code.", |
356 | 356 | "value": "https://github.com/openshift/django-ex.git"
|
357 | 357 | },
|
358 | 358 | {
|
359 | 359 | "name": "SOURCE_REPOSITORY_REF",
|
360 |
| - "displayName": "Source repository reference", |
361 |
| - "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch" |
| 360 | + "displayName": "Git Reference", |
| 361 | + "description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch." |
362 | 362 | },
|
363 | 363 | {
|
364 | 364 | "name": "CONTEXT_DIR",
|
365 |
| - "displayName": "Context directory", |
366 |
| - "description": "Set this to the relative path to your project if it is not in the root of your repository" |
| 365 | + "displayName": "Context Directory", |
| 366 | + "description": "Set this to the relative path to your project if it is not in the root of your repository." |
367 | 367 | },
|
368 | 368 | {
|
369 | 369 | "name": "APPLICATION_DOMAIN",
|
370 |
| - "displayName": "Application hostname", |
| 370 | + "displayName": "Application Hostname", |
371 | 371 | "description": "The exposed hostname that will route to the Django service, if left blank a value will be defaulted.",
|
372 | 372 | "value": ""
|
373 | 373 | },
|
374 | 374 | {
|
375 | 375 | "name": "GITHUB_WEBHOOK_SECRET",
|
376 |
| - "displayName": "GitHub webhook secret", |
377 |
| - "description": "A secret string used to configure the GitHub webhook", |
| 376 | + "displayName": "GitHub Webhook Secret", |
| 377 | + "description": "A secret string used to configure the GitHub webhook.", |
378 | 378 | "generate": "expression",
|
379 | 379 | "from": "[a-zA-Z0-9]{40}"
|
380 | 380 | },
|
381 | 381 | {
|
382 | 382 | "name": "DATABASE_SERVICE_NAME",
|
383 |
| - "displayName": "Database service name", |
384 |
| - "description": "Database service name", |
| 383 | + "displayName": "Database Service Name", |
385 | 384 | "value": "postgresql"
|
386 | 385 | },
|
387 | 386 | {
|
388 | 387 | "name": "DATABASE_ENGINE",
|
389 |
| - "displayName": "Database engine", |
390 |
| - "description": "Database engine: postgresql, mysql or sqlite (default)", |
| 388 | + "displayName": "Database Engine", |
| 389 | + "description": "Database engine: postgresql, mysql or sqlite (default).", |
391 | 390 | "value": "postgresql"
|
392 | 391 | },
|
393 | 392 | {
|
394 | 393 | "name": "DATABASE_NAME",
|
395 |
| - "displayName": "Database name", |
396 |
| - "description": "Database name", |
| 394 | + "displayName": "Database Name", |
397 | 395 | "value": "default"
|
398 | 396 | },
|
399 | 397 | {
|
400 | 398 | "name": "DATABASE_USER",
|
401 |
| - "displayName": "Database user name", |
402 |
| - "description": "Database user name", |
| 399 | + "displayName": "Database Username", |
403 | 400 | "value": "django"
|
404 | 401 | },
|
405 | 402 | {
|
406 | 403 | "name": "DATABASE_PASSWORD",
|
407 |
| - "displayName": "Database user password", |
408 |
| - "description": "Database user password", |
| 404 | + "displayName": "Database User Password", |
409 | 405 | "generate": "expression",
|
410 | 406 | "from": "[a-zA-Z0-9]{16}"
|
411 | 407 | },
|
412 | 408 | {
|
413 | 409 | "name": "APP_CONFIG",
|
414 |
| - "displayName": "Application configuration file path", |
415 |
| - "description": "Relative path to Gunicorn configuration file (optional)" |
| 410 | + "displayName": "Application Configuration File Path", |
| 411 | + "description": "Relative path to Gunicorn configuration file (optional)." |
416 | 412 | },
|
417 | 413 | {
|
418 | 414 | "name": "DJANGO_SECRET_KEY",
|
419 |
| - "displayName": "Djange secret key", |
420 |
| - "description": "Set this to a long random string", |
| 415 | + "displayName": "Djange Secret Key", |
| 416 | + "description": "Set this to a long random string.", |
421 | 417 | "generate": "expression",
|
422 | 418 | "from": "[\\w]{50}"
|
423 | 419 | }
|
|
0 commit comments