~oddbloke/cloud-init/fix-gce-az

« back to all changes in this revision

Viewing changes to doc/examples/cloud-config-rh_subscription.txt

  • Committer: Daniel Watkins
  • Date: 2015-07-22 12:06:34 UTC
  • Revision ID: daniel.watkins@canonical.com-20150722120634-wsg8rwzcaanhc2pn
Make full data source available to code that handles mirror selection.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#cloud-config
 
2
 
 
3
# register your Red Hat Enterprise Linux based operating system
 
4
#
 
5
# this cloud-init plugin is capable of registering by username 
 
6
# and password *or* activation and org.  Following a successfully
 
7
# registration you can:
 
8
#   - auto-attach subscriptions
 
9
#   - set the service level
 
10
#   - add subscriptions based on its pool ID
 
11
#   - enable yum repositories based on its repo id
 
12
#   - disable yum repositories based on its repo id
 
13
#   - alter the rhsm_baseurl and server-hostname in the
 
14
#     /etc/rhsm/rhs.conf file
 
15
 
 
16
rh_subscription:
 
17
    username: joe@foo.bar
 
18
 
 
19
    ## Quote your password if it has symbols to be safe
 
20
    password: '1234abcd'
 
21
 
 
22
    ## If you prefer, you can use the activation key and 
 
23
    ## org instead of username and password. Be sure to
 
24
    ## comment out username and password
 
25
 
 
26
    #activation-key: foobar
 
27
    #org: 12345
 
28
 
 
29
    ## Uncomment to auto-attach subscriptions to your system 
 
30
    #auto-attach: True
 
31
 
 
32
    ## Uncomment to set the service level for your 
 
33
    ##   subscriptions
 
34
    #service-level: self-support
 
35
 
 
36
    ## Uncomment to add pools (needs to be a list of IDs)
 
37
    #add-pool: []
 
38
 
 
39
    ## Uncomment to add or remove yum repos
 
40
    ##   (needs to be a list of repo IDs)
 
41
    #enable-repo: []
 
42
    #disable-repo: []
 
43
 
 
44
    ## Uncomment to alter the baseurl in /etc/rhsm/rhsm.conf
 
45
    #rhsm-baseurl: http://url
 
46
 
 
47
    ## Uncomment to alter the server hostname in 
 
48
    ##  /etc/rhsm/rhsm.conf
 
49
    #server-hostname: foo.bar.com