stups-senza


Namestups-senza JSON
Version 2.1.143 PyPI version JSON
download
home_pagehttps://github.com/zalando-stups/senza
SummaryAWS Cloud Formation deployment CLI
upload_time2023-03-27 13:54:16
maintainer
docs_urlNone
authorHenning Jacobs
requires_python
licenseApache License 2.0
keywords aws cloud formation cf elb ec2 stups immutable stacks route53 boto
VCS
bugtrack_url
requirements requests arrow clickclick pystache PyYAML dnspython stups-pierone boto3 botocore pytest raven typing
Travis-CI
coveralls test coverage
            =====
Senza
=====

.. image:: https://travis-ci.org/zalando-stups/senza.svg?branch=master
   :target: https://travis-ci.org/zalando-stups/senza
   :alt: Build Status

.. image:: https://coveralls.io/repos/zalando-stups/senza/badge.svg
   :target: https://coveralls.io/r/zalando-stups/senza
   :alt: Code Coverage

.. image:: https://img.shields.io/pypi/dw/stups-senza.svg
   :target: https://pypi.python.org/pypi/stups-senza/
   :alt: PyPI Downloads

.. image:: https://img.shields.io/pypi/v/stups-senza.svg
   :target: https://pypi.python.org/pypi/stups-senza/
   :alt: Latest PyPI version

.. image:: https://img.shields.io/pypi/l/stups-senza.svg
   :target: https://pypi.python.org/pypi/stups-senza/
   :alt: License
   
**THIS PROJECT IS NOT ACTIVELY MAINTAINED ANYMORE!**

Senza is a command line tool that enables you to generate and execute
`AWS CloudFormation`_ templates in a sane, simple way. With Senza, you
can write YAML documents and reuse common application stack solutions
such as load balancing, auto-scaling, IAM role management, and other
configurations. Senza also provides base CloudFormation templates for
web applications, background applications, PostgreSQL, `Redis`_
clusters, and Amazon `ElastiCache`_ stack types.

.. contents::
    :local:
    :depth: 3
    :backlinks: none


What Senza Solves
=================

AWS CloudFormation is great for managing immutable stacks on
AWS. However, writing CloudFormation templates in JSON format is not
human-friendly, which hinders developer productivity. Also, many parts
of a CloudFormation template are reusable among applications of the
same kind and CloudFormation does not provide a way to reuse
templates.

Senza addresses these problems by supporting CloudFormation
templates as YAML input and adding its own 'components' on
top. Components are predefined, easily configurable CloudFormation
snippets that generate all the boilerplate JSON that CloudFormation
requires.


Installation
============

.. code-block:: bash

    $ sudo pip3 install --upgrade stups-senza

Command Line Usage
==================

You can easily bootstrap Senza definitions to get started quickly:

.. code-block:: bash

    $ senza init my-definition.yaml # bootstrap a new app
    $ senza create ./my-definition.yaml 1 1.0

Create CloudFormation stacks from Senza definitions with the ``create`` command:

.. code-block:: bash

    $ senza create myapp.yaml 1 0.1-SNAPSHOT

How to disable the automatic CloudFormation rollback-on-failure to do 'post-mortem' debugging (e.g. on an EC2 instance):

.. code-block:: bash

    $ senza create --disable-rollback myerroneous-stack.yaml 1 0.1-SNAPSHOT

To pass parameters from a .yaml file:

.. code-block:: bash

    $ senza create --parameter-file parameters.yaml myapp.yaml 1 0.1-SNAPSHOT

To list stacks, use the ``list`` command:

.. code-block:: bash

    $ senza list myapp.yaml         # list only active stacks for myapp
    $ senza list myapp.yaml --all   # list stacks for myapp (also deleted ones)
    $ senza list                    # list all active stacks
    $ senza list --all              # list all stacks (including deleted ones)
    $ senza list "suite-.*" 1       # list stacks starting with "suite" and with version "1"
    $ senza list ".*" 42            # list all stacks  with version "42"
    $ senza list mystack ".*test"  # list all stacks for "mystack" with version ending in "test"

If you want more detailed information about your stacks, Senza provides additional commands:

.. code-block:: bash

    $ senza resources myapp.yaml 1 # list all CF resources
    $ senza events myapp.yaml 1    # list all CF events
    $ senza instances myapp.yaml 1 # list EC2 instances and IPs
    $ senza console myapp.yaml 1   # get EC2 console output for all stack instances
    $ senza console 172.31.1.2     # get EC2 console output for single instance

Most commands take so-called `STACK_REF` arguments. You can either use an
existing Senza definition YAML file (as shown above) or use the stack's name
and version. You can also use regular expressions to match multiple
applications and versions:

.. code-block:: bash

    $ senza inst                    # all instances, no STACK_REF argument given
    $ senza inst mystack            # list instances for all versions of "mystack"
    $ senza inst mystack 1          # only list instances for "mystack" version "1"
    $ senza inst "suite-.*" 1       # list instances starting with "suite" and with version "1"
    $ senza inst ".*" 42            # list all instances  with version "42"
    $ senza inst mystack ".*test"  # list all instances for "mystack" with version ending in "test"

.. Tip::

    All commands and subcommands can be abbreviated, i.e. the following lines are equivalent:

    .. code-block:: bash

        $ senza list
        $ senza l


Routing Traffic
---------------

Traffic can be routed via Route53 DNS to your new stack:

.. code-block:: bash

    $ senza traffic myapp.yaml      # show traffic distribution
    $ senza traffic myapp.yaml 2 50 # give version 2 50% of traffic

.. WARNING::
   Some clients use connection pools that - by default - reuse connections as long as there are requests to be processed. In such cases, ``senza traffic`` won't result in any redirection of the traffic, unfortunately. To force such clients to switch traffic from one stack to the other, you might want to manually disable the load balancer (ELB) of the old stack — for example, by changing the ELB listener port. This switches traffic entirely. Switching traffic slowly (via weighted DNS records) is only possible for NEW connections.

   We recommend monitoring clients' behavior when traffic switching, and — if necessary — asking them to reconfigure their connection pools.

Deleting Old Stacks
-------------------

To delete stacks that you're no longer using:

.. code-block:: bash

    $ senza delete myapp.yaml 1
    $ senza del mystack          # shortcut: delete the only version of "mystack"


Bash Completion
---------------

Bash's programmable completion feature permits typing a partial command, then pressing the ``[Tab]`` key to autocomplete the command sequence. If multiple completions are possible, then ``[Tab]`` lists them all.

To activate bash completion for the Senza CLI, just run:

.. code-block:: bash

    $ eval "$(_SENZA_COMPLETE=source senza)"

Put the eval line into your ``.bashrc``:

.. code-block:: bash

    $ echo 'eval "$(_SENZA_COMPLETE=source senza)"' >> ~/.bashrc


Controlling Command Output
--------------------------

The Senza CLI supports three different output formats:

``text``
    Default ANSI-colored output for human users.
``json``
    JSON output of tables for scripting.
``tsv``
    Print tables as `tab-separated values (TSV)`_.

JSON is best for handling the output programmatically via various languages or with `jq`_ (a command-line JSON processor). The text format is easy for humans to read, and "tsv" format works well with traditional Unix text processing tools like sed, grep, and awk:

.. _jq: https://stedolan.github.io/jq/
.. _tab-separated values (TSV): https://en.wikipedia.org/wiki/Tab-separated_values
.. code-block:: bash

    $ senza list --output json | jq .
    $ senza instances my-stack --output tsv | awk -F\\t '{ print $6 }'

.. _senza-definition:

Senza Definition
================

A minimal Senza definition without any Senza components would look like:

.. code-block:: yaml

    Description: "A minimal Cloud Formation stack creating a SQS queue"
    SenzaInfo:
      StackName: example
    Resources:
      MyQueue:
        Type: AWS::SQS::Queue

**Tip**: Use ``senza init`` to quickly bootstrap a new Senza definition YAML for most common use cases (e.g. a web application).

The SenzaInfo Key
-----------------

The ``SenzaInfo`` key configures global Senza behavior and must always be present in the definition YAML. Available properties for the ``SenzaInfo`` section:

``StackName``
    The stack name (required).
``OperatorTopicId``
    Optional SNS topic name or ARN for CloudFormation notifications. As an example: You can use this to send notifications about deployments to a mailing list.
``Parameters``
    Custom Senza definition parameters. Use to dynamically substitute variables in the CloudFormation template.

.. code-block:: yaml

    # basic information for generating and executing this definition
    SenzaInfo:
      StackName: kio
      OperatorTopicId: kio-operators
      Parameters:
          - ImageVersion:
              Description: "Docker image version of Kio."

    # a list of Senza components to apply to the definition
    SenzaComponents:
      - Configuration:
          Type: Senza::StupsAutoConfiguration # auto-detect network setup
      # will create a launch configuration and auto scaling group with min/max=1
      - AppServer:
          Type: Senza::TaupageAutoScalingGroup
          InstanceType: t2.micro
          SecurityGroups: [app-kio] # can be either name or id ("sg-..")
          ElasticLoadBalancer: AppLoadBalancer
          TaupageConfig:
            runtime: Docker
            source: stups/kio:{{Arguments.ImageVersion}}
            ports:
              8080: 8080
            environment:
              PGSSLMODE: verify-full
              DB_SUBNAME: "//kio.example.eu-west-1.rds.amazonaws.com:5432/kio?ssl=true"
              DB_USER: kio
              DB_PASSWORD: aws:kms:abcdef1234567890abcdef=
      # creates an ELB entry and Route53 domains to this ELB
      - AppLoadBalancer:
          Type: Senza::WeightedDnsElasticLoadBalancer
          HTTPPort: 8080
          HealthCheckPath: /ui/
          SecurityGroups: [app-kio-lb]
          Scheme: internet-facing

    # Plain CloudFormation definitions are fully supported:
    Outputs:
      URL:
        Description: "The ELB URL of the new Kio deployment."
        Value:
          "Fn::Join":
            - ""
            -
              - "http://"
              - "Fn::GetAtt":
                  - AppLoadBalancer
                  - DNSName

During evaluation, you can do mustache templating with access to the rendered definition, including the `SenzaInfo`, `SenzaComponents` and `Arguments` keys (containing all given arguments).

You can also specify the parameters by name, which makes the Senza CLI more readable. This might come handy in
complex scenarios with sizeable number of parameters:

.. code-block:: bash

    $ senza create example.yaml 3 example MintBucket=<mint-bucket> ImageVersion=latest

Here, the ``ApplicationId`` is given as a positional parameter. The two
other parameters follow, specified by their names. The named parameters on the
command line can be given in any order, but no positional parameter is allowed
to follow the named ones.

.. Note::

   The ``name=value`` named parameters are split on the first ``=``, so you can still include a literal ``=`` in the value part. Just pass this parameter with the name, to prevent Senza from treating the part of the parameter value before the first ``=`` as the parameter name.

You can pass any of the supported `CloudFormation Properties <http://
docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
parameters-section-structure.html>`_ such as ``AllowedPattern``, ``AllowedValues``,
``MinLength``, ``MaxLength``, etc. Senza itself will not enforce these,
but CloudFormation will evaluate the generated template and raise an exception
if any of the properties are not met. For example:

.. code-block:: bash

    $ senza create example.yaml 3 example latest mint-bucket "Way too long greeting"
    Generating Cloud Formation template.. OK
    Creating Cloud Formation stack hello-world-3.. EXCEPTION OCCURRED: An error occurred (ValidationError) when calling the CreateStack operation: Parameter 'GreetingText' must contain at most 15 characters
    Traceback (most recent call last):
    [...]

Using the ``Default`` attribute, you can give any parameter a default value.
If a parameter was not specified on the command line (either as positional or
named), the default value is used. We suggest putting all default-value
parameters at the bottom of your parameter definition list. Otherwise, there will be no way to map them to
proper positions, and you'll have to specify all the following
parameters using a ``name=value``.

There is an option to pass parameters from a file (the file needs to be formatted in .yaml):

.. code-block:: bash

    $ senza create --parameter-file parameters.yaml example.yaml 3 1.0-SNAPSHOT

An example of a parameter file:

.. code-block:: yaml

   ApplicationId: example-app-id
   MintBucket: your-mint-bucket

You can also combine parameter files and parameters from the command line, but you can't name the same parameter twice. Also, the parameter can't exist both in a file and on the command line:

.. code-block:: bash

    $ senza create --parameter-file parameters.yaml example.yaml 3 1.0-SNAPSHOT Param=Example1

AccountInfo
===========

Senza templates offer the following properties:

``{{AccountInfo.Region}}``: the AWS region where the stack is created. Ex: 'eu-central-1'. In many parts of a template, you can also use `{"Ref" : "AWS::Region"}`.

``{{AccountInfo.AccountAlias}}``: the alias name of the AWS account. Ex: 'super-team1-account'.

``{{AccountInfo.AccountID}}``: the AWS account id. Ex: '353272323354'.

``{{AccountInfo.TeamID}}``: the team ID. Ex: 'super-team1'.

``{{AccountInfo.Domain}}``: the AWS account domain. Ex: 'super-team1.net'.

Mappings
================

Senza mappings are essentially key-value pairs, and behave just like `CloudFormation mappings <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/mappings-section-structure.html>`_. Use mappings for ``Images``, ``ServerSubnets`` or ``LoadBalancerSubnets``.

An example:

.. code-block:: yaml

   Mappings:
      Images:
         eu-west-1:
            MyImage: "ami-123123"
   # (..)
   Image: MyImage

Senza Components
================

Configure all your Senza components in a list below the top-level `SenzaComponents` key. The structure is as follows:

.. code-block:: yaml

    SenzaComponents:
      - ComponentName1:
          Type: ComponentType1
          SomeComponentProperty: "some value"
      - ComponentName2:
          Type: ComponentType2

.. Note::

    Each list item below `SenzaComponents` is a map with only one key (the component name).
    The YAML "flow-style" syntax would be: ``SenzaComponents: [{CompName: {Type: CompType}}]``.


AutoScaling
===========

``AutoScaling`` properties include:

``Minimum``
    Minimum number of instances to spawn.
``Maximum``
    Maximum number of instances to spawn.
``SuccessRequires``:
    During startup of the stack, it defines when CloudFormation considers your ASG healthy. Defaults to one healthy instance/15 minutes. You can change settings — for example, "four healthy instances/1:20:30" would look like "4 within 1h20m30s". You can omit hours/minutes/seconds as you please. Values that look like integers will be counted as healthy instances: for example, "2" is interpreted as two healthy instances within the default timeout of 15 minutes.
``MetricType``
    Metric for doing auto-scaling that creates automatic alarms in CloudWatch for you. Must be either ``CPU``, ``NetworkIn`` or ``NetworkOut``. If you don't supply any info, your auto-scaling group will not dynamically scale and you'll have to define your own alerts.
``ScaleUpThreshold``
    The upper scaling threshold of the metric value. For the "CPU" metric: a value of 70 means 70% CPU usage. For network metrics, a value of 100 means 100 bytes. You can pass the unit (KB/GB/TB), e.g. "100 GB".
``ScaleDownThreshold``
    The lower scaling threshold of the metric value. For the "CPU" metric: a value of 40 means 40% CPU usage. For network metrics, a value of 2 means 2 bytes. You can pass the unit (KB/GB/TB), e.g. "2 GB".
``ScalingAdjustment``
    Number of instances added/removed per scaling action. Defaults to 1.
``Cooldown``:
    After a scaling action occurs, do not scale again for this amount of time (in seconds). Defaults to 60 (one minute).
``Statistic``
    Which statistic to track when deciding your scaling thresholds are met. Defaults to "Average", but can also be "SampleCount", "Sum", "Minimum", "Maximum".
``Period``
    Period (in seconds) over which statistic is calculated. Defaults to 300 (five minutes).
``EvaluationPeriods``
    The number of periods over which data is compared to the specified threshold. Defaults to 2.

BlockDeviceMappings & Ebs Properties
================================================

``BlockDeviceMappings`` properties are ``DeviceName`` (for example, /dev/xvdk) and ``Ebs`` (map of EBS options). ``VolumeSize``, an ``Ebs`` property, is for determining how much GB an EBS should have.

WeightedDnsElasticLoadBalancer
================================

Senza's **WeightedDnsElasticLoadBalancer** component type creates one HTTPs ELB resource with Route 53 weighted domains.
You can either auto-detect the SSL certificate name used by the ELB, or name it ``SSLCertificateId``. Specify the main domain (``MainDomain``) or the default Route53 hosted zone will apply.

An internal load balancer is created by default, which differs from AWS's default behavior. To create an Internet-facing ELB, explicitly set the ``Scheme`` to ``internet-facing``.

.. code-block:: yaml

    SenzaComponents:
      - AppLoadBalancer:
          Type: Senza::WeightedDnsElasticLoadBalancer
          HTTPPort: 8080
          SecurityGroups:
            - app-myapp-lb

The WeightedDnsElasticLoadBalancer component supports the following configuration properties:

``HTTPPort``
    The HTTP port used by the EC2 instances.
``HealthCheckPath``
    The HTTP path to use for health checks, e.g. "/health". Must return 200.
``HealthCheckPort``
    Optional. Port used for the health check. Defaults to ``HTTPPort``.
``SecurityGroups``
    List of security groups to use for the ELB. The security groups must allow SSL traffic.
``MainDomain``
    Main domain to use, e.g. "myapp.example.org".
``VersionDomain``
    Version domain to use, e.g. "myapp-1.example.org". You can use the usual templating feature to integrate the stack version, e.g. ``myapp-{{SenzaInfo.StackVersion}}.example.org``.
``Scheme``
    The load balancer scheme. Either ``internal`` or ``internet-facing``. Defaults to ``internal``.
``SSLCertificateId``
    Name or ARN ID of the uploaded SSL/TLS server certificate to use, e.g. ``myapp-example-org-letsencrypt`` or ``arn:aws:acm:eu-central-1:123123123:certificate/abcdefgh-ijkl-mnop-qrst-uvwxyz012345``.
    You can check available IAM server certificates with :code:`aws iam list-server-certificates`. For ACM certificates, use :code:`aws acm list-certificates`.

Additionally, you can specify any of the `valid AWS CloudFormation ELB properties`_ (e.g. to overwrite ``Listeners``).

.. _valid AWS CloudFormation ELB properties: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html

WeightedDnsElasticLoadBalancerV2
==================================

Similar to the WeightedDnsElasticLoadBalancer component **WeightedDnsElasticLoadBalancerV2** creates one HTTPs ELBv2 resource with Route 53 weighted domains.
ELBv2 listeners support SNI, hence you can specify multiple SSL certificates.

.. code-block:: yaml

    SenzaComponents:
      - AppLoadBalancer:
          Type: Senza::WeightedDnsElasticLoadBalancerV2
          HTTPPort: 8080
          SecurityGroups:
            - app-myapp-lb

The WeightedDnsElasticLoadBalancerV2 component supports the following configuration properties:

``HTTPPort``
    The HTTP port used by the EC2 instances.
``HealthCheckPath``
    The HTTP path to use for health checks, e.g. "/health". Must return 200.
``HealthCheckPort``
    Optional. Port used for the health check. Defaults to ``HTTPPort``.
``SecurityGroups``
    List of security groups to use for the ELBv2. The security groups must allow SSL traffic.
``MainDomain``
    Main domain to use, e.g. "myapp.example.org".
``VersionDomain``
    Version domain to use, e.g. "myapp-1.example.org". You can use the usual templating feature to integrate the stack version, e.g. ``myapp-{{SenzaInfo.StackVersion}}.example.org``.
``Scheme``
    The load balancer scheme. Either ``internal`` or ``internet-facing``. Defaults to ``internal``.
``SSLCertificateId``
    A comma-separated list of names or ARN ID of the uploaded SSL/TLS server certificates to use, e.g. ``myapp-example-org-letsencrypt`` or ``arn:aws:acm:eu-central-1:123123123:certificate/abcdefgh-ijkl-mnop-qrst-uvwxyz012345``.
    You can check available IAM server certificates with :code:`aws iam list-server-certificates`. For ACM certificates, use :code:`aws acm list-certificates`.

Cross-Stack References
======================

Traditional CloudFormation templates only allow you to reference resources located in the same template. This can be
quite limiting. To compensate, Senza selectively supports special *cross-stack references* in some parts of your template — for instance, in `SecurityGroups` and `IamRoles`:

.. code-block:: yaml

   AppServer:
      Type: Senza::TaupageAutoScalingGroup
      InstanceType: c4.xlarge
      SecurityGroups:
        - Stack: base-1
          LogicalId: ApplicationSecurityGroup
      IamRoles:
        - Stack: base-1
          LogicalId: ApplicationRole

With these references, you can have an additional special stack per application that defines common security groups and IAM roles shared across different versions. Note that this in contrast to using `senza init`.


Unit Tests
==========

.. code-block:: bash

    $ python3 setup.py test --cov-html=true

Releasing
=========

.. code-block:: bash

    $ ./release.sh <NEW-VERSION>

.. _`AWS CloudFormation`: https://aws.amazon.com/cloudformation/
.. _`ElastiCache`: https://aws.amazon.com/elasticache/
.. _`Redis`: http://redis.io/



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zalando-stups/senza",
    "name": "stups-senza",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "aws cloud formation cf elb ec2 stups immutable stacks route53 boto",
    "author": "Henning Jacobs",
    "author_email": "henning.jacobs@zalando.de",
    "download_url": "https://files.pythonhosted.org/packages/6a/ea/01e4b20293b6bca24020b1cb8e67104bda61c0636d5e3cc0a37d3a5f389c/stups-senza-2.1.143.tar.gz",
    "platform": null,
    "description": "=====\nSenza\n=====\n\n.. image:: https://travis-ci.org/zalando-stups/senza.svg?branch=master\n   :target: https://travis-ci.org/zalando-stups/senza\n   :alt: Build Status\n\n.. image:: https://coveralls.io/repos/zalando-stups/senza/badge.svg\n   :target: https://coveralls.io/r/zalando-stups/senza\n   :alt: Code Coverage\n\n.. image:: https://img.shields.io/pypi/dw/stups-senza.svg\n   :target: https://pypi.python.org/pypi/stups-senza/\n   :alt: PyPI Downloads\n\n.. image:: https://img.shields.io/pypi/v/stups-senza.svg\n   :target: https://pypi.python.org/pypi/stups-senza/\n   :alt: Latest PyPI version\n\n.. image:: https://img.shields.io/pypi/l/stups-senza.svg\n   :target: https://pypi.python.org/pypi/stups-senza/\n   :alt: License\n   \n**THIS PROJECT IS NOT ACTIVELY MAINTAINED ANYMORE!**\n\nSenza is a command line tool that enables you to generate and execute\n`AWS CloudFormation`_ templates in a sane, simple way. With Senza, you\ncan write YAML documents and reuse common application stack solutions\nsuch as load balancing, auto-scaling, IAM role management, and other\nconfigurations. Senza also provides base CloudFormation templates for\nweb applications, background applications, PostgreSQL, `Redis`_\nclusters, and Amazon `ElastiCache`_ stack types.\n\n.. contents::\n    :local:\n    :depth: 3\n    :backlinks: none\n\n\nWhat Senza Solves\n=================\n\nAWS CloudFormation is great for managing immutable stacks on\nAWS. However, writing CloudFormation templates in JSON format is not\nhuman-friendly, which hinders developer productivity. Also, many parts\nof a CloudFormation template are reusable among applications of the\nsame kind and CloudFormation does not provide a way to reuse\ntemplates.\n\nSenza addresses these problems by supporting CloudFormation\ntemplates as YAML input and adding its own 'components' on\ntop. Components are predefined, easily configurable CloudFormation\nsnippets that generate all the boilerplate JSON that CloudFormation\nrequires.\n\n\nInstallation\n============\n\n.. code-block:: bash\n\n    $ sudo pip3 install --upgrade stups-senza\n\nCommand Line Usage\n==================\n\nYou can easily bootstrap Senza definitions to get started quickly:\n\n.. code-block:: bash\n\n    $ senza init my-definition.yaml # bootstrap a new app\n    $ senza create ./my-definition.yaml 1 1.0\n\nCreate CloudFormation stacks from Senza definitions with the ``create`` command:\n\n.. code-block:: bash\n\n    $ senza create myapp.yaml 1 0.1-SNAPSHOT\n\nHow to disable the automatic CloudFormation rollback-on-failure to do 'post-mortem' debugging (e.g. on an EC2 instance):\n\n.. code-block:: bash\n\n    $ senza create --disable-rollback myerroneous-stack.yaml 1 0.1-SNAPSHOT\n\nTo pass parameters from a .yaml file:\n\n.. code-block:: bash\n\n    $ senza create --parameter-file parameters.yaml myapp.yaml 1 0.1-SNAPSHOT\n\nTo list stacks, use the ``list`` command:\n\n.. code-block:: bash\n\n    $ senza list myapp.yaml         # list only active stacks for myapp\n    $ senza list myapp.yaml --all   # list stacks for myapp (also deleted ones)\n    $ senza list                    # list all active stacks\n    $ senza list --all              # list all stacks (including deleted ones)\n    $ senza list \"suite-.*\" 1       # list stacks starting with \"suite\" and with version \"1\"\n    $ senza list \".*\" 42            # list all stacks  with version \"42\"\n    $ senza list mystack \".*test\"  # list all stacks for \"mystack\" with version ending in \"test\"\n\nIf you want more detailed information about your stacks, Senza provides additional commands:\n\n.. code-block:: bash\n\n    $ senza resources myapp.yaml 1 # list all CF resources\n    $ senza events myapp.yaml 1    # list all CF events\n    $ senza instances myapp.yaml 1 # list EC2 instances and IPs\n    $ senza console myapp.yaml 1   # get EC2 console output for all stack instances\n    $ senza console 172.31.1.2     # get EC2 console output for single instance\n\nMost commands take so-called `STACK_REF` arguments. You can either use an\nexisting Senza definition YAML file (as shown above) or use the stack's name\nand version. You can also use regular expressions to match multiple\napplications and versions:\n\n.. code-block:: bash\n\n    $ senza inst                    # all instances, no STACK_REF argument given\n    $ senza inst mystack            # list instances for all versions of \"mystack\"\n    $ senza inst mystack 1          # only list instances for \"mystack\" version \"1\"\n    $ senza inst \"suite-.*\" 1       # list instances starting with \"suite\" and with version \"1\"\n    $ senza inst \".*\" 42            # list all instances  with version \"42\"\n    $ senza inst mystack \".*test\"  # list all instances for \"mystack\" with version ending in \"test\"\n\n.. Tip::\n\n    All commands and subcommands can be abbreviated, i.e. the following lines are equivalent:\n\n    .. code-block:: bash\n\n        $ senza list\n        $ senza l\n\n\nRouting Traffic\n---------------\n\nTraffic can be routed via Route53 DNS to your new stack:\n\n.. code-block:: bash\n\n    $ senza traffic myapp.yaml      # show traffic distribution\n    $ senza traffic myapp.yaml 2 50 # give version 2 50% of traffic\n\n.. WARNING::\n   Some clients use connection pools that - by default - reuse connections as long as there are requests to be processed. In such cases, ``senza traffic`` won't result in any redirection of the traffic, unfortunately. To force such clients to switch traffic from one stack to the other, you might want to manually disable the load balancer (ELB) of the old stack \u2014 for example, by changing the ELB listener port. This switches traffic entirely. Switching traffic slowly (via weighted DNS records) is only possible for NEW connections.\n\n   We recommend monitoring clients' behavior when traffic switching, and \u2014 if necessary \u2014 asking them to reconfigure their connection pools.\n\nDeleting Old Stacks\n-------------------\n\nTo delete stacks that you're no longer using:\n\n.. code-block:: bash\n\n    $ senza delete myapp.yaml 1\n    $ senza del mystack          # shortcut: delete the only version of \"mystack\"\n\n\nBash Completion\n---------------\n\nBash's programmable completion feature permits typing a partial command, then pressing the ``[Tab]`` key to autocomplete the command sequence. If multiple completions are possible, then ``[Tab]`` lists them all.\n\nTo activate bash completion for the Senza CLI, just run:\n\n.. code-block:: bash\n\n    $ eval \"$(_SENZA_COMPLETE=source senza)\"\n\nPut the eval line into your ``.bashrc``:\n\n.. code-block:: bash\n\n    $ echo 'eval \"$(_SENZA_COMPLETE=source senza)\"' >> ~/.bashrc\n\n\nControlling Command Output\n--------------------------\n\nThe Senza CLI supports three different output formats:\n\n``text``\n    Default ANSI-colored output for human users.\n``json``\n    JSON output of tables for scripting.\n``tsv``\n    Print tables as `tab-separated values (TSV)`_.\n\nJSON is best for handling the output programmatically via various languages or with `jq`_ (a command-line JSON processor). The text format is easy for humans to read, and \"tsv\" format works well with traditional Unix text processing tools like sed, grep, and awk:\n\n.. _jq: https://stedolan.github.io/jq/\n.. _tab-separated values (TSV): https://en.wikipedia.org/wiki/Tab-separated_values\n.. code-block:: bash\n\n    $ senza list --output json | jq .\n    $ senza instances my-stack --output tsv | awk -F\\\\t '{ print $6 }'\n\n.. _senza-definition:\n\nSenza Definition\n================\n\nA minimal Senza definition without any Senza components would look like:\n\n.. code-block:: yaml\n\n    Description: \"A minimal Cloud Formation stack creating a SQS queue\"\n    SenzaInfo:\n      StackName: example\n    Resources:\n      MyQueue:\n        Type: AWS::SQS::Queue\n\n**Tip**: Use ``senza init`` to quickly bootstrap a new Senza definition YAML for most common use cases (e.g. a web application).\n\nThe SenzaInfo Key\n-----------------\n\nThe ``SenzaInfo`` key configures global Senza behavior and must always be present in the definition YAML. Available properties for the ``SenzaInfo`` section:\n\n``StackName``\n    The stack name (required).\n``OperatorTopicId``\n    Optional SNS topic name or ARN for CloudFormation notifications. As an example: You can use this to send notifications about deployments to a mailing list.\n``Parameters``\n    Custom Senza definition parameters. Use to dynamically substitute variables in the CloudFormation template.\n\n.. code-block:: yaml\n\n    # basic information for generating and executing this definition\n    SenzaInfo:\n      StackName: kio\n      OperatorTopicId: kio-operators\n      Parameters:\n          - ImageVersion:\n              Description: \"Docker image version of Kio.\"\n\n    # a list of Senza components to apply to the definition\n    SenzaComponents:\n      - Configuration:\n          Type: Senza::StupsAutoConfiguration # auto-detect network setup\n      # will create a launch configuration and auto scaling group with min/max=1\n      - AppServer:\n          Type: Senza::TaupageAutoScalingGroup\n          InstanceType: t2.micro\n          SecurityGroups: [app-kio] # can be either name or id (\"sg-..\")\n          ElasticLoadBalancer: AppLoadBalancer\n          TaupageConfig:\n            runtime: Docker\n            source: stups/kio:{{Arguments.ImageVersion}}\n            ports:\n              8080: 8080\n            environment:\n              PGSSLMODE: verify-full\n              DB_SUBNAME: \"//kio.example.eu-west-1.rds.amazonaws.com:5432/kio?ssl=true\"\n              DB_USER: kio\n              DB_PASSWORD: aws:kms:abcdef1234567890abcdef=\n      # creates an ELB entry and Route53 domains to this ELB\n      - AppLoadBalancer:\n          Type: Senza::WeightedDnsElasticLoadBalancer\n          HTTPPort: 8080\n          HealthCheckPath: /ui/\n          SecurityGroups: [app-kio-lb]\n          Scheme: internet-facing\n\n    # Plain CloudFormation definitions are fully supported:\n    Outputs:\n      URL:\n        Description: \"The ELB URL of the new Kio deployment.\"\n        Value:\n          \"Fn::Join\":\n            - \"\"\n            -\n              - \"http://\"\n              - \"Fn::GetAtt\":\n                  - AppLoadBalancer\n                  - DNSName\n\nDuring evaluation, you can do mustache templating with access to the rendered definition, including the `SenzaInfo`, `SenzaComponents` and `Arguments` keys (containing all given arguments).\n\nYou can also specify the parameters by name, which makes the Senza CLI more readable. This might come handy in\ncomplex scenarios with sizeable number of parameters:\n\n.. code-block:: bash\n\n    $ senza create example.yaml 3 example MintBucket=<mint-bucket> ImageVersion=latest\n\nHere, the ``ApplicationId`` is given as a positional parameter. The two\nother parameters follow, specified by their names. The named parameters on the\ncommand line can be given in any order, but no positional parameter is allowed\nto follow the named ones.\n\n.. Note::\n\n   The ``name=value`` named parameters are split on the first ``=``, so you can still include a literal ``=`` in the value part. Just pass this parameter with the name, to prevent Senza from treating the part of the parameter value before the first ``=`` as the parameter name.\n\nYou can pass any of the supported `CloudFormation Properties <http://\ndocs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/\nparameters-section-structure.html>`_ such as ``AllowedPattern``, ``AllowedValues``,\n``MinLength``, ``MaxLength``, etc. Senza itself will not enforce these,\nbut CloudFormation will evaluate the generated template and raise an exception\nif any of the properties are not met. For example:\n\n.. code-block:: bash\n\n    $ senza create example.yaml 3 example latest mint-bucket \"Way too long greeting\"\n    Generating Cloud Formation template.. OK\n    Creating Cloud Formation stack hello-world-3.. EXCEPTION OCCURRED: An error occurred (ValidationError) when calling the CreateStack operation: Parameter 'GreetingText' must contain at most 15 characters\n    Traceback (most recent call last):\n    [...]\n\nUsing the ``Default`` attribute, you can give any parameter a default value.\nIf a parameter was not specified on the command line (either as positional or\nnamed), the default value is used. We suggest putting all default-value\nparameters at the bottom of your parameter definition list. Otherwise, there will be no way to map them to\nproper positions, and you'll have to specify all the following\nparameters using a ``name=value``.\n\nThere is an option to pass parameters from a file (the file needs to be formatted in .yaml):\n\n.. code-block:: bash\n\n    $ senza create --parameter-file parameters.yaml example.yaml 3 1.0-SNAPSHOT\n\nAn example of a parameter file:\n\n.. code-block:: yaml\n\n   ApplicationId: example-app-id\n   MintBucket: your-mint-bucket\n\nYou can also combine parameter files and parameters from the command line, but you can't name the same parameter twice. Also, the parameter can't exist both in a file and on the command line:\n\n.. code-block:: bash\n\n    $ senza create --parameter-file parameters.yaml example.yaml 3 1.0-SNAPSHOT Param=Example1\n\nAccountInfo\n===========\n\nSenza templates offer the following properties:\n\n``{{AccountInfo.Region}}``: the AWS region where the stack is created. Ex: 'eu-central-1'. In many parts of a template, you can also use `{\"Ref\" : \"AWS::Region\"}`.\n\n``{{AccountInfo.AccountAlias}}``: the alias name of the AWS account. Ex: 'super-team1-account'.\n\n``{{AccountInfo.AccountID}}``: the AWS account id. Ex: '353272323354'.\n\n``{{AccountInfo.TeamID}}``: the team ID. Ex: 'super-team1'.\n\n``{{AccountInfo.Domain}}``: the AWS account domain. Ex: 'super-team1.net'.\n\nMappings\n================\n\nSenza mappings are essentially key-value pairs, and behave just like `CloudFormation mappings <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/mappings-section-structure.html>`_. Use mappings for ``Images``, ``ServerSubnets`` or ``LoadBalancerSubnets``.\n\nAn example:\n\n.. code-block:: yaml\n\n   Mappings:\n      Images:\n         eu-west-1:\n            MyImage: \"ami-123123\"\n   # (..)\n   Image: MyImage\n\nSenza Components\n================\n\nConfigure all your Senza components in a list below the top-level `SenzaComponents` key. The structure is as follows:\n\n.. code-block:: yaml\n\n    SenzaComponents:\n      - ComponentName1:\n          Type: ComponentType1\n          SomeComponentProperty: \"some value\"\n      - ComponentName2:\n          Type: ComponentType2\n\n.. Note::\n\n    Each list item below `SenzaComponents` is a map with only one key (the component name).\n    The YAML \"flow-style\" syntax would be: ``SenzaComponents: [{CompName: {Type: CompType}}]``.\n\n\nAutoScaling\n===========\n\n``AutoScaling`` properties include:\n\n``Minimum``\n    Minimum number of instances to spawn.\n``Maximum``\n    Maximum number of instances to spawn.\n``SuccessRequires``:\n    During startup of the stack, it defines when CloudFormation considers your ASG healthy. Defaults to one healthy instance/15 minutes. You can change settings \u2014 for example, \"four healthy instances/1:20:30\" would look like \"4 within 1h20m30s\". You can omit hours/minutes/seconds as you please. Values that look like integers will be counted as healthy instances: for example, \"2\" is interpreted as two healthy instances within the default timeout of 15 minutes.\n``MetricType``\n    Metric for doing auto-scaling that creates automatic alarms in CloudWatch for you. Must be either ``CPU``, ``NetworkIn`` or ``NetworkOut``. If you don't supply any info, your auto-scaling group will not dynamically scale and you'll have to define your own alerts.\n``ScaleUpThreshold``\n    The upper scaling threshold of the metric value. For the \"CPU\" metric: a value of 70 means 70% CPU usage. For network metrics, a value of 100 means 100 bytes. You can pass the unit (KB/GB/TB), e.g. \"100 GB\".\n``ScaleDownThreshold``\n    The lower scaling threshold of the metric value. For the \"CPU\" metric: a value of 40 means 40% CPU usage. For network metrics, a value of 2 means 2 bytes. You can pass the unit (KB/GB/TB), e.g. \"2 GB\".\n``ScalingAdjustment``\n    Number of instances added/removed per scaling action. Defaults to 1.\n``Cooldown``:\n    After a scaling action occurs, do not scale again for this amount of time (in seconds). Defaults to 60 (one minute).\n``Statistic``\n    Which statistic to track when deciding your scaling thresholds are met. Defaults to \"Average\", but can also be \"SampleCount\", \"Sum\", \"Minimum\", \"Maximum\".\n``Period``\n    Period (in seconds) over which statistic is calculated. Defaults to 300 (five minutes).\n``EvaluationPeriods``\n    The number of periods over which data is compared to the specified threshold. Defaults to 2.\n\nBlockDeviceMappings & Ebs Properties\n================================================\n\n``BlockDeviceMappings`` properties are ``DeviceName`` (for example, /dev/xvdk) and ``Ebs`` (map of EBS options). ``VolumeSize``, an ``Ebs`` property, is for determining how much GB an EBS should have.\n\nWeightedDnsElasticLoadBalancer\n================================\n\nSenza's **WeightedDnsElasticLoadBalancer** component type creates one HTTPs ELB resource with Route 53 weighted domains.\nYou can either auto-detect the SSL certificate name used by the ELB, or name it ``SSLCertificateId``. Specify the main domain (``MainDomain``) or the default Route53 hosted zone will apply.\n\nAn internal load balancer is created by default, which differs from AWS's default behavior. To create an Internet-facing ELB, explicitly set the ``Scheme`` to ``internet-facing``.\n\n.. code-block:: yaml\n\n    SenzaComponents:\n      - AppLoadBalancer:\n          Type: Senza::WeightedDnsElasticLoadBalancer\n          HTTPPort: 8080\n          SecurityGroups:\n            - app-myapp-lb\n\nThe WeightedDnsElasticLoadBalancer component supports the following configuration properties:\n\n``HTTPPort``\n    The HTTP port used by the EC2 instances.\n``HealthCheckPath``\n    The HTTP path to use for health checks, e.g. \"/health\". Must return 200.\n``HealthCheckPort``\n    Optional. Port used for the health check. Defaults to ``HTTPPort``.\n``SecurityGroups``\n    List of security groups to use for the ELB. The security groups must allow SSL traffic.\n``MainDomain``\n    Main domain to use, e.g. \"myapp.example.org\".\n``VersionDomain``\n    Version domain to use, e.g. \"myapp-1.example.org\". You can use the usual templating feature to integrate the stack version, e.g. ``myapp-{{SenzaInfo.StackVersion}}.example.org``.\n``Scheme``\n    The load balancer scheme. Either ``internal`` or ``internet-facing``. Defaults to ``internal``.\n``SSLCertificateId``\n    Name or ARN ID of the uploaded SSL/TLS server certificate to use, e.g. ``myapp-example-org-letsencrypt`` or ``arn:aws:acm:eu-central-1:123123123:certificate/abcdefgh-ijkl-mnop-qrst-uvwxyz012345``.\n    You can check available IAM server certificates with :code:`aws iam list-server-certificates`. For ACM certificates, use :code:`aws acm list-certificates`.\n\nAdditionally, you can specify any of the `valid AWS CloudFormation ELB properties`_ (e.g. to overwrite ``Listeners``).\n\n.. _valid AWS CloudFormation ELB properties: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html\n\nWeightedDnsElasticLoadBalancerV2\n==================================\n\nSimilar to the WeightedDnsElasticLoadBalancer component **WeightedDnsElasticLoadBalancerV2** creates one HTTPs ELBv2 resource with Route 53 weighted domains.\nELBv2 listeners support SNI, hence you can specify multiple SSL certificates.\n\n.. code-block:: yaml\n\n    SenzaComponents:\n      - AppLoadBalancer:\n          Type: Senza::WeightedDnsElasticLoadBalancerV2\n          HTTPPort: 8080\n          SecurityGroups:\n            - app-myapp-lb\n\nThe WeightedDnsElasticLoadBalancerV2 component supports the following configuration properties:\n\n``HTTPPort``\n    The HTTP port used by the EC2 instances.\n``HealthCheckPath``\n    The HTTP path to use for health checks, e.g. \"/health\". Must return 200.\n``HealthCheckPort``\n    Optional. Port used for the health check. Defaults to ``HTTPPort``.\n``SecurityGroups``\n    List of security groups to use for the ELBv2. The security groups must allow SSL traffic.\n``MainDomain``\n    Main domain to use, e.g. \"myapp.example.org\".\n``VersionDomain``\n    Version domain to use, e.g. \"myapp-1.example.org\". You can use the usual templating feature to integrate the stack version, e.g. ``myapp-{{SenzaInfo.StackVersion}}.example.org``.\n``Scheme``\n    The load balancer scheme. Either ``internal`` or ``internet-facing``. Defaults to ``internal``.\n``SSLCertificateId``\n    A comma-separated list of names or ARN ID of the uploaded SSL/TLS server certificates to use, e.g. ``myapp-example-org-letsencrypt`` or ``arn:aws:acm:eu-central-1:123123123:certificate/abcdefgh-ijkl-mnop-qrst-uvwxyz012345``.\n    You can check available IAM server certificates with :code:`aws iam list-server-certificates`. For ACM certificates, use :code:`aws acm list-certificates`.\n\nCross-Stack References\n======================\n\nTraditional CloudFormation templates only allow you to reference resources located in the same template. This can be\nquite limiting. To compensate, Senza selectively supports special *cross-stack references* in some parts of your template \u2014 for instance, in `SecurityGroups` and `IamRoles`:\n\n.. code-block:: yaml\n\n   AppServer:\n      Type: Senza::TaupageAutoScalingGroup\n      InstanceType: c4.xlarge\n      SecurityGroups:\n        - Stack: base-1\n          LogicalId: ApplicationSecurityGroup\n      IamRoles:\n        - Stack: base-1\n          LogicalId: ApplicationRole\n\nWith these references, you can have an additional special stack per application that defines common security groups and IAM roles shared across different versions. Note that this in contrast to using `senza init`.\n\n\nUnit Tests\n==========\n\n.. code-block:: bash\n\n    $ python3 setup.py test --cov-html=true\n\nReleasing\n=========\n\n.. code-block:: bash\n\n    $ ./release.sh <NEW-VERSION>\n\n.. _`AWS CloudFormation`: https://aws.amazon.com/cloudformation/\n.. _`ElastiCache`: https://aws.amazon.com/elasticache/\n.. _`Redis`: http://redis.io/\n\n\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "AWS Cloud Formation deployment CLI",
    "version": "2.1.143",
    "split_keywords": [
        "aws",
        "cloud",
        "formation",
        "cf",
        "elb",
        "ec2",
        "stups",
        "immutable",
        "stacks",
        "route53",
        "boto"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea79ee2978e232ad99dff0c03d3be722a2e61a439fd64e13dd4a7c052e519307",
                "md5": "8b1e065115a517d99774e4e33fd12c06",
                "sha256": "a0da3b277e9817fdf66d2ef883b3491d8bfd67d078a0d6caa224ebc71baee2eb"
            },
            "downloads": -1,
            "filename": "stups_senza-2.1.143-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8b1e065115a517d99774e4e33fd12c06",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 120167,
            "upload_time": "2023-03-27T13:54:14",
            "upload_time_iso_8601": "2023-03-27T13:54:14.381874Z",
            "url": "https://files.pythonhosted.org/packages/ea/79/ee2978e232ad99dff0c03d3be722a2e61a439fd64e13dd4a7c052e519307/stups_senza-2.1.143-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6aea01e4b20293b6bca24020b1cb8e67104bda61c0636d5e3cc0a37d3a5f389c",
                "md5": "845916b3e38bf05c94af0bfa2f0716c7",
                "sha256": "ff072e3c8365d423f9c05dd49f388f0bdc8660fa26fdddeda56333ab36c4b7e3"
            },
            "downloads": -1,
            "filename": "stups-senza-2.1.143.tar.gz",
            "has_sig": false,
            "md5_digest": "845916b3e38bf05c94af0bfa2f0716c7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 123328,
            "upload_time": "2023-03-27T13:54:16",
            "upload_time_iso_8601": "2023-03-27T13:54:16.970227Z",
            "url": "https://files.pythonhosted.org/packages/6a/ea/01e4b20293b6bca24020b1cb8e67104bda61c0636d5e3cc0a37d3a5f389c/stups-senza-2.1.143.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-27 13:54:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "zalando-stups",
    "github_project": "senza",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "requirements": [
        {
            "name": "requests",
            "specs": []
        },
        {
            "name": "arrow",
            "specs": []
        },
        {
            "name": "clickclick",
            "specs": [
                [
                    ">=",
                    "1.0"
                ]
            ]
        },
        {
            "name": "pystache",
            "specs": []
        },
        {
            "name": "PyYAML",
            "specs": []
        },
        {
            "name": "dnspython",
            "specs": [
                [
                    ">=",
                    "1.15.0"
                ]
            ]
        },
        {
            "name": "stups-pierone",
            "specs": [
                [
                    ">=",
                    "1.0.34"
                ]
            ]
        },
        {
            "name": "boto3",
            "specs": [
                [
                    ">=",
                    "1.3.0"
                ]
            ]
        },
        {
            "name": "botocore",
            "specs": [
                [
                    ">=",
                    "1.4.10"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "3.6.3"
                ]
            ]
        },
        {
            "name": "raven",
            "specs": []
        },
        {
            "name": "typing",
            "specs": []
        }
    ],
    "tox": true,
    "lcname": "stups-senza"
}
        
Elapsed time: 0.05857s