~canonical-ci-engineering/uci-engine/trunk

« back to all changes in this revision

Viewing changes to charms/precise/lander/config.yaml

  • Committer: Ubuntu CI Bot
  • Author(s): Celso Providelo
  • Date: 2015-01-07 14:33:28 UTC
  • mfrom: (911.1.8 charms-cleanup)
  • Revision ID: ubuntu_ci_bot-20150107143328-q0d037ojtopm3n9d
Removing the charms from UCI-E since they live in isolated branches now and also adjusting the run-tests to stop loading/running charm tests.

Updating local j-d copy to trunk (r126) for proper support for charm branch pinning. [r=Evan Dandrea]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
options:
2
 
  current_code:
3
 
    type: string
4
 
    description: A URL to a tarball of the code
5
 
  available_code:
6
 
    type: string
7
 
    description: |
8
 
      A list of code deployment URLs to keep around. Any versions found locally
9
 
      not in this list will be removed.
10
 
  install_root:
11
 
    type: string
12
 
    default: "/srv/"
13
 
    description: The root directory the service will be installed in
14
 
  install_sources:
15
 
    type: string
16
 
    default: ""
17
 
    description: |
18
 
      YAML list of additional installation sources, as a string. The number
19
 
      of install_sources must match the number of install_keys. For
20
 
      example:
21
 
        install_sources: |
22
 
         - "ppa:project1/ppa"
23
 
         - "cloud:precise-proposed/folsom"
24
 
         - "http://example.com/repo precise main"
25
 
  install_keys:
26
 
    type: string
27
 
    default: ""
28
 
    description: |
29
 
      YAML list of GPG keys for installation sources, as a string. For apt
30
 
      repository URLs, use the public key ID used to verify package
31
 
      signatures. For other sources such as PPA, use null. This
32
 
      list must have the same number of elements as install_sources, even
33
 
      if the key items are all empty string. An example to go with the
34
 
      above for install_sources:
35
 
        install_keys: |
36
 
         - null
37
 
         - null
38
 
         - "a1b2c3d4"
39
 
  packages:
40
 
    type: string
41
 
    default: ""
42
 
    description: "List of extra packages to add (' ' separated)."
43
 
  main:
44
 
    type: string
45
 
    default: ""
46
 
    description: "The worker script to run as a service. Can include paths relative to local bzr directory"
47
 
 
48
 
  unit-config:
49
 
    type: string
50
 
    description: |
51
 
      base64 encoded string to hold configuration information for the unit.
52
 
      The contents will be written to a file named
53
 
       <install_root>/<unit>/unit_config
54
 
      where <unit> is the location the branch is extracted to.
55
 
 
56
 
  user:
57
 
    type: string
58
 
    default: nobody
59
 
    description: The username to run the lander under
60
 
  group:
61
 
    type: string
62
 
    default: nogroup
63
 
    description: The group to run the lander under
64
 
 
65
 
# required for rabbitmq-server charm:
66
 
  amqp-user:
67
 
    type: string
68
 
    default: workerbee
69
 
    description: The user to log into the rabbitMQ server.
70
 
  amqp-vhost:
71
 
    type: string
72
 
    default: '/'
73
 
    description: The vhost in the rabbitMQ server.