7.3. データファイルの生成

手順

  1. コマンドジェネレーターを実行します。

    $ docker run --rm -v <local_directory_data_file>:/data $IMAGE command_generator_vars <playbook_name> --output-data-file /data/<data-file>.yml

    このコマンドの出力は、実行するコマンドとデータファイルテンプレートです。データファイルは <local_data_file_directory> にも保存されます。これは、データを入力するテンプレートです。

    以下の例では、gcp_backup_deployment Playbook を使用します。

    $ docker run --rm -v <local_data_file_directory>:/data $IMAGE command_generator_vars gcp_backup_deployment \
    --output-data-file /data/backup.yml
  2. 以下の出力が生成されます。

    ===============================================
    Playbook: gcp_backup_deployment
    Description: This playbook is used to backup the AoC Self-managed GCP environment.
    -----------------------------------------------
    This playbook is used to backup the AoC Self-managed GCP environment.
    For more information regarding backup and restore, visit our official documentation -
    
    -----------------------------------------------
    Command generator template:
    
    docker run --rm -v /tmp:/data $IMAGE command_generator gcp_backup_deployment --data-file /data/backup.yml
    
    Data template:
    
    gcp_backup_deployment:
      cloud_credentials_path:
      deployment_name:
      extra_vars:
        gcp_bucket_backup_name:
        gcp_compute_region:
        gcp_compute_zone:
    
    ===============================================