name

Cerca

Heus ací els resultats de la cerca.

playbooks @info:cursos:udemy:ansible
45 Resultats, Darrera modificació:
s * formato YAML:<code yaml; playbook.yml>--- - name: Mi primer playbook hosts: all remote_user: <... , se podría hacer a nivel de tarea tasks: - name: copiar ficheros hosts copy: src=/etc/hosts dest=/etc/host - name: ... service: ... </code> * cada guión ... laybook, puede haber varios en un fichero * **name** es opcional, pero recomendado * ''ansible-pla
gestión de paquetes @info:cursos:udemy:ansible:modulos
39 Resultats, Darrera modificació:
dule.html#cpanm-module]] * from_path = ruta * name = nombre * localib = ruta * mirror = mirror ... = directorio * <del>state</del> <code yaml> - name: instalar gcc yum: name=gcc state=latest - name: instalar paquete básico yum: name=perl-App-cpanminus state=latest - name: in
gestionar el sistema @info:cursos:udemy:ansible:modulos
37 Resultats, Darrera modificació:
le.html#alternatives-module]] * requerido * name = nombre * path = /ruta/al/fichero * opcion... ruta/al/fichero * priority = 50 <code yaml> - name: fijar la versión de Java a 8 alternatives: name: java path: /usr/lib/jvm/java-8-openjdk-amd64... / yes <- si ya existe no se añade <code yaml> - name: autorizar clave pública authorized_keys: u
Terraform, conditionals, state and VM @info:cursos:udemy:terraform-azure
34 Resultats, Darrera modificació:
"azurerm_network_interface" "web_server_nic" { name = "${var.web_server_name}-nic" location = "${var.web_server_location}" resource_group_name = "${azurerm_resource_group.web_server_rg.name}" ip_configuration { name
bases de datos @info:cursos:udemy:ansible:modulos
23 Resultats, Darrera modificació:
redis * riak === mysql_db * requiere * name = nombre BDD * opcional * state = { present... : (idioma) es_ES.UTF8 * target <code yaml> - name: Instalar libreria requerida pip: name=pytho_mysql state=latest - name: crear si no existe la BDD mysql_db: name: <bdd> state: pres
ficheros y openssl @info:cursos:udemy:ansible:modulos
22 Resultats, Darrera modificació:
de = modo * src = /path/origen <code yaml> - name: copiar configuración copy: src=apache2.conf de... che2/apache2.conf owner=www-data group=www-data - name: crear contenido en fichero copy: content="Mi c... * group = grupo * mode = modo <code yaml> - name: copiar pantilla de configuración template: src... touch * absent <code yaml> ... tasks: - name: propiedades del fichero file: path="/path/al
Terraform, variables, interpolation and networking @info:cursos:udemy:terraform-azure
19 Resultats, Darrera modificació:
ables y su uso:<code properties> variable "server_name" { default = "web-server" } variable "locati... e> * ''terraform console'' * var.server_name * var.locations["location1"] * var.lo... urce "azurerm_resource_group" "web_server_rg" { name = var.web_server_rg location = var.web_server_l... e "azurerm_virtual_network" "web_server_vnet" { name = "${var.resource_prefix}-vnet" location = var.
utilidades @info:cursos:udemy:ansible:modulos
19 Resultats, Darrera modificació:
si no existe el fichero, NO ejecuta <code yaml> - name: obtener uname command: uname -a register: salida_uname - name: crear base de datos si no existe command: /sbi... /var/lib/mysql creates: /basededatos/existe - name: ejecutar si existe command uname -a removes=/t... * removes * echo * timeout <code yaml> - name: instalar pexpect, necesario en el nodo remoto
Windows @info:cursos:udemy:ansible:modulos
12 Resultats, Darrera modificació:
chero * removes = c:\ruta\fichero <code yaml> -name: quien soy hosts: windows01 tasks: - win_comm... r * dest = c:\path\destino <code yaml> ... - name: copiar fichero win_copy: src: config.txt ... ile | directory | touch | absent } <code yaml> - name: crear estructura de directorios win_file: ... no / yes * regexp = REGEX <code yaml> ... - name: editar puerto win_lineinfile: path: c:\htt
Web y messaging @info:cursos:udemy:ansible:modulos
11 Resultats, Darrera modificació:
.html#apache2-module-module]] * requerido * name = módulo * opcional * state = { PRESENT / absent } * force = yes / no <code yaml> -name: Habilitar móudlo wsgi apache2_module: name: wsgi state: present </code> === htpasswd [[http... module.html#htpasswd-module]] * requerido * name = módulo * path = /ruta/fichero/htpasswd *
Curso python udemy
7 Resultats, Darrera modificació:
de python>message = "Welcome to our online shop!" name = "John" serial = "R001991981SW"</code> * Lists... ed all the items of 'abc' to uppercase. * The name after for (e.g. letter) is just a variable name * You can loop over dictionary keys as follows:<code ... jects are not immediately available in the global namespace. They are parts of a builtin module. To use
Sistema de Control de Versiones @info:cursos:udemy:ansible:modulos
6 Resultats, Darrera modificació:
* accept_hostkey = no / yes <code yaml> ... -name: obtener ejemplo git: repo: https://github.... es/git_config_module.html#git-config-module]] * name = nombre_calve * value = valor * scope = { lo... all = yes / no * repo = ruta/repo <code yaml> -name: usar vim como editor git_config: name: core.editor value: vim scope: global </code> ===
3:46 Monitorización @info:cursos:udemy:ansible:modulos
4 Resultats, Darrera modificació:
zabbix_screen * zabbix_hostmacro <code yaml> - name: Modulos monitoring hosts: localhost tasks: - pip: name=zabbix-api state=latest - name: Create host groups zabbix_group: server_url: http://z... state: present status: enabled host_name: lab.oforte.net host_groups: - ofor
notificaciones @info:cursos:udemy:ansible:modulos
4 Resultats, Darrera modificació:
alhost when: notificar == "mail" - pip: name=pushbullet.py when: notificar == "pushbulle... ars: - notificar: "pushbullet" tasks: - name: instalar pushbullet.py pip: name=pushbullet.py state=latest when: notificar == "pushbullet" - name: enviar notificación pushbullet:
Galaxy @info:cursos:udemy:ansible
2 Resultats, Darrera modificació:
o **hg** * version : la versión a instalar * name : un nombre distinto al original <code yaml; req... ts.yml> - src: bennojoy.nginx version: master name: nginx_master - src: https://github.com/bennejoy/
introducción @info:cursos:udemy:ansible
2 Resultats, Darrera modificació:
Terraform, getting started @info:cursos:udemy:terraform-azure
2 Resultats, Darrera modificació:
Terraform, entorno de trabajo @info:cursos:udemy:terrafrom-fundamentos
2 Resultats, Darrera modificació: