{% extends "horizon/common/_modal_form.html" %} {% load i18n horizon humanize %} {% block form_action %}{% url horizon:project:murano:create %}?{{ request.POST.urlencode }}{% endblock %} {% block modal_id %}create_service{% endblock %} {% block modal-header %}{% trans "Create Service" %}{% endblock %} {% block modal-body %}

{% if wizard.steps.next %}


{% endif %} {{ wizard.management_form }} {% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %} {{ form }} {% endfor %} {% else %}
{% include "_horizon_form_fields.html" %}
{% endif %}
{% if wizard.steps.prev %}

{% blocktrans %} {{ service_type }} Service{% endblocktrans %}

{% if service_type == 'Active Directory' %}

{% blocktrans %} Domain Name: {% endblocktrans %} {% blocktrans %} Enter a desired name for a new domain. This name should fit in standard Windows domain name requirements: it should contain only A-Z, a-z, 0-9, and (-) and should not end with a dash. DNS server will be automatically set up on each of the Domain Controller instances. {% endblocktrans %}

{% blocktrans %} Instance Count: {% endblocktrans %} {% blocktrans %} You can create several Active Directory instances by setting instance number larger than one. One primary Domain Controller and a few secondary DCs will be created. {% endblocktrans %}

{% blocktrans %} Passwords: {% endblocktrans %} {% blocktrans %} Windows requires strong password for service administration. Your password should have at least one letter in each register, a number and a special character. Password length should be a minimum of 8 characters. {% endblocktrans %} {% blocktrans %} Once you forget your password you won't be able to operate the service until recovery password would be entered. So it's better for Recovery and Administrator password to be different. {% endblocktrans %}

{% elif service_type == 'ASP.NET Application' %} {% blocktrans %} ASP.NET application will be installed onto one IISWeb Server {% endblocktrans %}

{% blocktrans %} Service Name: {% endblocktrans %} {% blocktrans %} Enter a desired name for a service. Just A-Z, a-z, 0-9, dash and underline are allowed. {% endblocktrans %}

{% blocktrans %} Administrator Password: {% endblocktrans %} {% blocktrans %} Windows requires strong password for service administration. Your password should have at least one letter in each register, a number and a special character. Password length should be a minimum of 8 characters. {% endblocktrans %} {% blocktrans %} Once you forget your password you won't be able to operate the service. {% endblocktrans %}

{% blocktrans %} Domain: {% endblocktrans %} {% blocktrans %} Service can be joined to the Active Directory domain. If you want to create an AD domain create the AD Service first. {% endblocktrans %}

{% blocktrans %} Git repository {% endblocktrans %} {% blocktrans %} URL of a git repository with the application you want to deploy. {% endblocktrans %}

{% elif service_type == 'ASP.NET Farm' %}

{% blocktrans %} The ASP.NET application will be installed on a number of IIS Web Servers, and load balancing will be configured. {% endblocktrans %}

{% blocktrans %} Service Name: {% endblocktrans %} {% blocktrans %} Enter a desired name for a service. Just A-Z, a-z, 0-9, dash and underline are allowed. {% endblocktrans %}

{% blocktrans %} Administrator Password: {% endblocktrans %} {% blocktrans %} Windows requires strong password for service administration. Your password should have at least one letter in each register, a number and a special character. Password length should be a minimum of 8 characters. Once you forget your password you won't be able to operate the service. {% endblocktrans %}

{% blocktrans %} Instance Count: {% endblocktrans %} {% blocktrans %} Several instances with ASP.NET Application Service can be created. {% endblocktrans %}

{% blocktrans %} Load Balancer port {% endblocktrans %} {% blocktrans %} Specify port number where Load Balancer will be running {% endblocktrans %}

{% elif service_type == 'IIS' %}

{% blocktrans %} Standalone IIS Server {% endblocktrans %}

{% blocktrans %} Service Name: {% endblocktrans %} {% blocktrans %} Enter a desired name for a service. Just A-Z, a-z, 0-9, dash and underline are allowed. {% endblocktrans %}

{% blocktrans %} Administrator Password: {% endblocktrans %} {% blocktrans %} Windows requires strong password for service administration. Your password should have at least one letter in each register, a number and a special character. Password length should be a minimum of 8 characters. {% endblocktrans %} {% blocktrans %} Once you forget your password you won't be able to operate the service. {% endblocktrans %}

{% blocktrans %} Domain: {% endblocktrans %} {% blocktrans %} Service can be joined to the Active Directory domain. If you want to create an AD domain create the AD Service first. {% endblocktrans %}

{% elif service_type == 'IIS Farm' %}

{% blocktrans %} A load-balanced array of IIS servers {% endblocktrans %}

{% blocktrans %} Service Name: {% endblocktrans %} {% blocktrans %} Enter a desired name for a service. Just A-Z, a-z, 0-9, dash and underline are allowed. {% endblocktrans %}

{% blocktrans %} Administrator Password: {% endblocktrans %} {% blocktrans %} Windows requires strong password for service administration. Your password should have at least one letter in each register, a number and a special character. Password length should be a minimum of 8 characters. Once you forget your password you won't be able to operate the service. {% endblocktrans %}

{% blocktrans %} Domain: {% endblocktrans %} {% blocktrans %} Service can be joined to the Active Directory domain. If you want to create an AD domain create the AD Service first. {% endblocktrans %}

{% blocktrans %} Instance Count: {% endblocktrans %} {% blocktrans %} Several instances with IIS Service can be created at one time. {% endblocktrans %}

{% blocktrans %} Load Balancer port {% endblocktrans %} {% blocktrans %} Specify port number where Load Balancer will be running {% endblocktrans %}

{% elif service_type == '' %}

{% blocktrans %} Please try again {% endblocktrans %}

{% endif %}

{% blocktrans %} Hostname template {% endblocktrans %} {% blocktrans %} For your convenience all instance hostnames can be named in the same way. Enter a name and use # character for for incrementation. For example, host# turns into host1, host2, etc. Please follow Windows hostname restrictions. {% endblocktrans %}

{% else %}

{% trans "Description" %}:

{% blocktrans %} The Active Directory Service includes one primary and optionally a few secondary Domain Controllers, with DNS service {% endblocktrans %}

{% blocktrans %} The Internet Information Service sets up an IIS server and joins it into an existing domain {% endblocktrans %}

{% blocktrans %} The ASP.NET Application Service installs custom application onto one IIS Web Server {% endblocktrans %}

{% blocktrans %} The IIS Farm Service sets up a load-balanced set of IIS servers {% endblocktrans %}

{% blocktrans %} The ASP.NET Application Service installs a custom application on a load-balanced array of IIS servers {% endblocktrans %}

{% blocktrans %} If you want your services to work with AD you should create The Active Directory Service first {% endblocktrans %}

{% endif %}
{% endblock %} {% block modal-footer %} {% if wizard.steps.prev %} {% else %} {% endif %} {% endblock %}