Cerca

Heus ací els resultats de la cerca.

terraform azure @tech:terraform
21 Resultats, Darrera modificació:
e tfstate <code bash> #!/bin/bash RESOURCE_GROUP_NAME=tstate STORAGE_ACCOUNT_NAME=tstate$RANDOM CONTAINER_NAME=tstate # Create resource group #az group create --name $RESOURCE_GROUP_NAME --location eastus az group c
master template @tech:vagrant:vagrantfile
18 Resultats, Darrera modificació:
hosts.each do |host| config.vm.define host['name'] do |node| node.vm.box = host['box'] node.vm.hostname = host['hostname'] node.vm.network :private_network, ip: host['ip'] host['sync']&.each { |... ox do |v| v.linked_clone = true v.name = host['name'] v.cpus = host['cpus']
kubernetes namespace @tech:k8s:cli
17 Resultats, Darrera modificació:
= kubernetes namespace <code bash; listado de los namespaces existentes>kubectl get namespace</code> <code bash; instrucciones sobre un namespace concreto>kubectl get pods --namespace=<insert-
terraform win-instance @tech:terraform
14 Resultats, Darrera modificació:
{ cidr_block = "172.16.0.0/16" tags = { Name = "tf-example" } } resource "aws_subnet" "my_s... map_public_ip_on_launch = true tags = { Name = "tf-example" } } resource "aws_internet_gate... { vpc_id = "${aws_vpc.my_vpc.id}" tags { Name = "IGW-MYAPP" } depends_on = ["aws_vpc.my_vp... ivate_ips = ["172.16.10.100"] # tags = { # Name = "primary_network_interface" # } # } resource
terraform variables @tech:terraform
13 Resultats, Darrera modificació:
ad de diferentes tipos * <code javascript>{ name = "John" age = 52 }</code> * <code ruby>variable "wks_rg_name" { type = object({ pre = string, in... = string, default = string }) } wks_rg_name = { pre = "prepre", int = "intint", ... "" } resource "azurerm_resource_group" "rg" { name = "rg1-rg-${var.wks_rg_name[terraform.workspa
Terraform workspace @tech:terraform:poc
12 Resultats, Darrera modificació:
ng" default = "West Europe" } variable "wks_rg_name" { type = object({ pre = string, in... = string, default = string }) } wks_rg_name = { pre = "prepre", int = "intint", ... "" } resource "azurerm_resource_group" "rg" { name = "rg1-rg-${var.wks_rg_name[terraform.workspace]}" location = "${var.location}" tags = { s
git tips @tech:git
11 Resultats, Darrera modificació:
ombrado rama en local y remoto> git checkout <old_name> && git branch -m <new_name> # o git branch -m <old_name> <new_name> git push -u origin <new_name> # y comprobar en remoto que todo ha ido bien git push origin
docker TLS (OLD) @tech:docker
10 Resultats, Darrera modificació:
tps://www.labkey.org/Documentation/wiki-page.view?name=dockerTLS]] * [[https://docs.docker.com/engine/... eq] req_extensions = v3_req distinguished_name = req_distinguished_name [req_distinguished_name] [ v3_req] basicConstraints = CA:FALSE keyUsage = nonRepudiatio
docker volumes @tech:docker
10 Resultats, Darrera modificació:
docker run * ''--volume | -v'' * ''[ volume_name | local_path | <nothing-for-anonymous-volume ] : ... * ''type=[bind,volume,tmpfs], [ source|src= {name,path} ], destination|dst|target=<path-in-containe... te == examples <code bash> docker run -d \ --name devtest \ --mount source=myvol2,target=/app \ #... nx:latest </code> <code bash> docker run -d \ --name=nginxtest \ --mount source=nginx-vol,destinatio
vagrant mysql @tech:vagrant:vagrantfile
9 Resultats, Darrera modificació:
Vagrantfile> IP = '192.168.1.20' VERSION = '5.5' NAME = "mysql-#{VERSION}" Vagrant.configure("2") do |... onfig.vm.box = "altrankas/mysql5" config.vm.hostname = NAME config.vm.define NAME config.vm.network "private_network", ip: "#{IP}" config.vm.network "forward
vagrantfile @tech:vagrant
7 Resultats, Darrera modificació:
== Vagrant.configure("2") do |config| * config namespace: [[https://www.vagrantup.com/docs/vagrantfil... p.vagrantup.com/debian/boxes/bullseye64" === hostname === provision * **name**: nombre del provisionar (para info) * **type**: * shell * file *... * inline (key/value): <code>config.vm.provision [name] type: "shell", path: "bootstrap.sh"</code> * R
Dockerfile mariadb + SSL @tech:docker:dockerfile:examples
7 Resultats, Darrera modificació:
csr.conf>[req] default_bits = 2048 distinguished_name = dn prompt = no [dn] C="TW" ST="Tai... ail.com" CN="yourdomain.com" [req_ext] subjectAltName = @alt_names [alt_names] DNS.0 = *.yourdomain.com DNS.1 = *.dev.yourdomain.com</code> * importante que el CN
casos de uso @tech:terraform
6 Resultats, Darrera modificació:
powershell; template.tpl> Install-WindowsFeature -Name GPMC,RSAT-AD-PowerShell,RSAT-AD-AdminCenter,RSAT-... S-Tools,RSAT-DNS-Server New-ADOrganizationalUnit -Name "${container_OU}" -Path "${base_path_AD}" New-ADGroup -Name "${admin_vpn_group}" -SamAccountName ${admin_vpn_group} -GroupCategory Security -GroupScope Global -Dis
3 nodos vagrant + docker @tech:vagrant:vagrantfile
6 Resultats, Darrera modificació:
odo1.vm.box = "debian/jessie64" nodo1.vm.hostname = "nodo1" # nodo1.vm.network "public_network"... nodo1.vm.provider "virtualbox" do |vb| vb.name = "debian-swarm-nodo1" vb.memory = 1024 ... odo2.vm.box = "debian/jessie64" nodo2.vm.hostname = "nodo2" nodo2.vm.network "private_network"... nodo2.vm.provider "virtualbox" do |vb| vb.name = "debian-swarm-nodo2" vb.memory = 1024
Vagrantfile: multi-machine cluster in a loop @tech:vagrant:vagrantfile
6 Resultats, Darrera modificació:
) do |config| cluster.each_with_index do |(hostname, info), index| config.vm.define hostname do |cfg| cfg.vm.provider :virtualbox do |vb, overri... twork, ip: "#{info[:ip]}" override.vm.hostname = hostname vb.name = hostname vb.customize ["modifyvm", :id, "--memory", info[:mem], "-
VAGRANT @tech:vagrant
5 Resultats, Darrera modificació:
vagrant tomcat (7/8) con JDK (7/8) @tech:vagrant:vagrantfile
5 Resultats, Darrera modificació:
vagrantfile examples @tech:vagrant
4 Resultats, Darrera modificació:
docker-compose casos de uso @tech:docker:docker-compose
4 Resultats, Darrera modificació:
kubernetes events @tech:k8s:cli
4 Resultats, Darrera modificació:
istio @tech:istio
3 Resultats, Darrera modificació:
POC estructura AD @tech:terraform
3 Resultats, Darrera modificació:
vagrant weblogic @tech:vagrant:vagrantfile
3 Resultats, Darrera modificació:
docker run @tech:docker
2 Resultats, Darrera modificació:
DOCKER @tech:docker
2 Resultats, Darrera modificació:
Google @tech:google
2 Resultats, Darrera modificació:
regexp (regular expression) @tech:regexp
2 Resultats, Darrera modificació:
dockerd remote tls access @tech:docker:dockerd
2 Resultats, Darrera modificació:
vagrant + docker @tech:vagrant:vagrantfile
2 Resultats, Darrera modificació:
vagrant + docker + ngnix @tech:vagrant:vagrantfile
2 Resultats, Darrera modificació:
AWS @tech:aws
1 Resultats, Darrera modificació:
docker scan @tech:docker
1 Resultats, Darrera modificació:
docker swarm: official guide @tech:dockerswarm
1 Resultats, Darrera modificació:
ELK @tech:elk
1 Resultats, Darrera modificació:
git config @tech:git
1 Resultats, Darrera modificació:
Anotaciones curso GIT @tech:git
1 Resultats, Darrera modificació:
git diff @tech:git
1 Resultats, Darrera modificació:
git diff[tool] @tech:git
1 Resultats, Darrera modificació:
git: fusion varios repos en 1 conservando historia @tech:git
1 Resultats, Darrera modificació:
git: replicación o duplicación de repositorios @tech:git
1 Resultats, Darrera modificació:
git repo server @tech:git
1 Resultats, Darrera modificació:
kubernetes rbac @tech:k8s
1 Resultats, Darrera modificació:
kubernetes @tech:k8s
1 Resultats, Darrera modificació:
Terraform cli @tech:terraform
1 Resultats, Darrera modificació:
terraform data source @tech:terraform
1 Resultats, Darrera modificació:
TERRAFORM @tech:terraform
1 Resultats, Darrera modificació:
URI @tech:uri
1 Resultats, Darrera modificació:
kubernetes in azure @tech:k8s:cli
1 Resultats, Darrera modificació:
kubectl proxy @tech:k8s:cli
1 Resultats, Darrera modificació:
vagrant php @tech:vagrant:vagrantfile
1 Resultats, Darrera modificació: