Skip to content

Commit

Permalink
Revert "Add documents for azure terraform deployment (#1496) (#804)"
Browse files Browse the repository at this point in the history
This reverts commit 7afaa66.
  • Loading branch information
Markus Napp committed Nov 23, 2020
1 parent 2db8084 commit 0496238
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 364 deletions.
2 changes: 0 additions & 2 deletions adoc/book_deployment.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ include::deployment-sles.adoc[Existing SLES Installation, leveloffset=+1]

include::deployment-aws.adoc[Amazon AWS Cloud Instructions, leveloffset=+1]

include::deployment-azure.adoc[Microsoft Azure Cloud Instructions, leveloffset=+1]

include::deployment-bootstrap.adoc[Bootstrapping,leveloffset=0]

include::deployment-cilium.adoc[Cilium,leveloffset=0]
Expand Down
236 changes: 0 additions & 236 deletions adoc/deployment-azure.adoc

This file was deleted.

124 changes: 0 additions & 124 deletions adoc/deployment-terraform-example.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -271,127 +271,3 @@ plane instance. Leave empty to have {tf} create it.
<9> `iam_profile_worker`: Name of the IAM profile to associate with the worker
instances. Leave empty to have {tf} create it.
# end::tf_aws[]

[[tf.azure]]
=== Terraform Azure Configuration
# tag::tf_azure[]
[source,json]
----
# Azure location
azure_location = "West Europe" // <1>
# Enable zone for available regions
# EXAMPLE:
# enable_zone = true // <2>
# List of Availability Zones (e.g. `["1", "2", "3"]`)
# EXAMPLE:
# azure_availability_zones = ["1", "2", "3"] // <3>
# CIDR blocks for virtual network
# EXAMPLE:
# cidr_block = "10.1.0.0/16" // <4>
# CIDR blocks for the bastion host subnet
# EXAMPLE:
# bastionhost_subnet_cidr = "10.1.1.0/24" // <5>
# Private subnet of virtual_network
# EXAMPLE:
# private_subnet_cidr = "10.1.4.0/24" // <6>
# Identifier to make all your resources unique and avoid clashes with other users of this terraform project
# EXAMPLE:
stack_name = "my-sles-cluster" // <7>
# Name of DNS domain
# EXAMPLE:
dnsdomain = "my-sles-cluster.example.com" // <8>
# Enables creation of bastion host
# EXAMPLE:
# create_bastionhost = false // <9>
# Number of master nodes
# EXAMPLE:
# masters = 3 // <10>
# Size of the master nodes
# EXAMPLE:
# master_vm_size = "Standard_D2s_v3" // <11>
# Storage account type of the master nodes
# EXAMPLE:
# master_storage_account_type = "StandardSSD_LRS" // <12>
# Size of the master volumes in GB
# EXAMPLE:
# master_disk_size = 30 // <13>
# Number of worker nodes
# EXAMPLE:
# workers = 2 // <14>
# Size of the worker nodes
# EXAMPLE:
# worker_vm_size = "Standard_D2s_v3" // <15>
# Storage account type of the worker nodes
# EXAMPLE:
# worker_storage_account_type = "StandardSSD_LRS" // <16>
# Size of the worker volumes in GB
# EXAMPLE:
# worker_disk_size = 30 // <17>
# define the repositories to use
# EXAMPLE:
# repositories = {
# repository1 = "http://example.my.repo.com/repository1/"
# repository2 = "http://example.my.repo.com/repository2/"
# } // <18>
# Minimum required packages. Do not remove them.
# Feel free to add more packages
packages = [] // <19>
# ssh keys to inject into all the nodes
authorized_keys = [] // <20>
# IMPORTANT: Replace these ntp servers with ones from your infrastructure
# EXAMPLE:
# ntp_servers = [
# "0.europe.pool.ntp.org",
# "1.europe.pool.ntp.org",
# "2.europe.pool.ntp.org"
# ] // <21>
# List of virtual network IDs to join via virual network peering
# EXAMPLE:`
# peer_virutal_network_id = ["vnet-id1", "vnet-id2"] // <22>
----

<1> `azure_location` : AZURE location
<2> `enable_zone` : Enable zone for availability regions
<3> `azure_availability_zones` : List of Availability Zones (e.g. `["1", "2", "3"]`)
<4> `cidr_block` : CIDR blocks for virtual network
<5> `bastionhost_subnet_cidr` : CIDR blocks for the bastion host subnet
<6> `private_subnet_cidr` : Private subnet of virtual_network
<7> `stack_name` : Identifier to make all your resources unique and avoid clashes with other users of this terraform project
<8> `dnsdomain` : Name of DNS domain
<9> `create_bastionhost` : Enables creation of bastion host
<10> `masters` : Number of master nodes
<11> `master_vm_size` : Size of the master nodes
<12> `master_storage_account_type` : Storage account type of the master nodes
<13> `master_disk_size` : Size of the volume, in Gb
<14> `workers` : Number of worker nodes
<15> `worker_vm_size` : Size of the worker nodes
<16> `worker_storage_account_type` : Storage account type of the worker nodes
<17> `worker_disk_size` : Size of the volume, in Gb
<18> `repositories` : define the repositories to use
<19> `packages` : required packages
<20> `authorized_keys` : ssh keys to inject into all the nodes
<21> `ntp_servers` : ntp servers
<22> `peer_virutal_network_id` : List of Virtual Network IDs to join via virual network peering

# end::tf_azure[]
2 changes: 0 additions & 2 deletions adoc/entities.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ Applications

:aa: <phrase xmlns='http://docbook.org/ns/docbook'>AppArmor</phrase>
:aareg: <phrase xmlns='http://docbook.org/ns/docbook'>AppArmor(R)</phrase>
:azure: Microsoft Azure
:cpufreq: CPUfreq
:crio: CRI-O
:eks: Amazon Elastic Kubernetes Service
:gpg: GPG or GnuGP
:helm: Helm
:jeos: JeOS Just enough OS
Expand Down

0 comments on commit 0496238

Please sign in to comment.