Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GoikLectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goik Martin
GoikLectures
Commits
3949f523
Commit
3949f523
authored
10 months ago
by
Goik Martin
Browse files
Options
Downloads
Patches
Plain Diff
Clud init and Terraform
parent
372d7089
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Doc/Sdi/CloudProvider/gettingStarted.xml
+74
-1
74 additions, 1 deletion
Doc/Sdi/CloudProvider/gettingStarted.xml
with
74 additions
and
1 deletion
Doc/Sdi/CloudProvider/gettingStarted.xml
+
74
−
1
View file @
3949f523
...
...
@@ -682,7 +682,7 @@ Someone could be eavesdropping on you right now (<emphasis role="red">man-in-the
<title>
Cloud Init
</title>
<figure
xml:id=
"sdi_cloudProvider_cloudInit_cloudStackTalk"
>
<title>
Introduction
</title>
<title>
Introduction
and reference
</title>
<itemizedlist>
<listitem>
...
...
@@ -690,7 +690,80 @@ Someone could be eavesdropping on you right now (<emphasis role="red">man-in-the
xlink:href=
"https://mirror.mi.hdm-stuttgart.de/Videos/Cloud/cloud-init_CloudStackCollaborationConference2022.mp4"
>
Conference
talk
</link>
.
</para>
</listitem>
<listitem>
<para><link
xlink:href=
"https://cloudinit.readthedocs.io/en/latest"
>
Cloud-init
documentation
</link></para>
</listitem>
</itemizedlist>
</figure>
<figure
xml:id=
"sdi_cloudProvider_cloudInit_nutshell"
>
<title>
In a nutshell
</title>
<itemizedlist>
<listitem>
<para>
Distribution image containing pre-installed
<productname>
Cloud
Init
</productname></para>
</listitem>
<listitem>
<para>
Script configurable installation options
</para>
</listitem>
</itemizedlist>
</figure>
<figure
xml:id=
"sdi_cloudProvider_cloudInit_configOverview"
>
<title>
Configuration options
</title>
<informaltable
border=
"0"
>
<tr>
<td
valign=
"top"
><itemizedlist>
<listitem>
<para>
Individual CRUD file operations
</para>
</listitem>
<listitem>
<para>
Supplying
<productname>
ssh
</productname>
user and host
keys.
</para>
</listitem>
<listitem>
<para>
Adding users
</para>
</listitem>
<listitem>
<para>
...
</para>
</listitem>
</itemizedlist></td>
<td
valign=
"top"
><itemizedlist>
<listitem>
<para>
Installing packages
</para>
</listitem>
<listitem>
<para>
System Upgrade + reboot
</para>
</listitem>
<listitem>
<para>
Arbitrary command execution
</para>
</listitem>
</itemizedlist></td>
</tr>
</informaltable>
</figure>
<figure
xml:id=
"sdi_cloudProvider_cloudInit_terraformInterfaceCloudinit"
>
<title><productname>
Terraform
</productname>
interface to
<productname>
Cloud Init
</productname></title>
<programlisting
language=
"terraform"
>
resource "hcloud_server" "web" {
name = var.server_name
...
user_data = file("Server/web/web.yml")
}
</programlisting>
</figure>
</section>
</chapter>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment