Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.69 KB

config.md

File metadata and controls

25 lines (20 loc) · 1.69 KB

configuration

C2C CI utils configuration file

Properties

  • print_versions: Refer to #/definitions/print_versions.
  • k8s (object): Default: {}.
    • k3d (object): Default: {}.
      • install-commands (array): Default: [["k3d", "cluster", "create", "test-cluster", "--no-lb", "--no-rollback"]].
        • Items (array)
          • Items (string)
    • db (object): Database configuration. Default: {}.
      • chart-options (object): Can contain additional properties. Default: {"persistence.enabled": "false", "tls.enabled": "true", "tls.autoGenerated": "true", "auth.postgresPassword": "mySuperTestingPassword", "volumePermissions.enabled": "true"}.
        • Additional properties (string)

Definitions

  • print_versions (object): The print versions configuration.
    • versions (array): Default: [{"name": "python", "cmd": ["python3", "--version"]}, {"name": "pip", "cmd": ["python3", "-m", "pip", "--version"]}, {"name": "node", "prefix": "node ", "cmd": ["node", "--version"]}, {"name": "npm", "prefix": "npm ", "cmd": ["npm", "--version"]}, {"name": "make", "cmd": ["make", "--version"]}, {"name": "docker", "cmd": ["docker", "--version"]}, {"name": "docker compose", "cmd": ["docker", "compose", "version"]}, {"name": "java", "cmd": ["java", "-version"]}, {"name": "helm", "cmd": ["helm", "version"], "prefix": "HELM: "}].
      • Items (object)
        • cmd (array): The command that should be used.
          • Items (string)
        • name (string): The name.
        • prefix (string): Prefix added when we print the version.