You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The cloud prefix can be one of:
20
20
-`digitalocean` for [DigitalOcean](https://github.com/pulumi/pulumi-digitalocean/)
21
21
-`f5bigip` for [F5's BIG-IP](https://github.com/pulumi/pulumi-f5bigip/)
22
22
-`cloud` for [Pulumi's cross-cloud programming framework](https://github.com/pulumi/pulumi-cloud), which is currently in preview
23
-
- Any [cloud provider](https://www.pulumi.com/docs/reference/pkg/#cloud-providers) with a dedicated Pulumi package
23
+
- Any [cloud provider](https://www.pulumi.com/registry) with a dedicated Pulumi package
24
24
25
25
The language prefix can be one of:
26
26
-`ts` for TypeScript
@@ -69,4 +69,3 @@ Each example should include a README to give the readers a good walkthrough. It
69
69
See our [example README template](example-readme-template.md.txt) for detailed explanations on each section.
70
70
71
71
> The contribution guidelines have been authored in September 2019 and are subject to further refinements and tweaks. Examples prior to September 2019 do not necessarily conform to these guidelines.
Copy file name to clipboardExpand all lines: aws-py-wordpress-fargate-rds/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This example serves a WordPress site in AWS ECS Fargate using an RDS MySQL Backe
5
5
It leverages the following Pulumi concepts/constructs:
6
6
7
7
-[Component Resources](https://www.pulumi.com/docs/intro/concepts/programming-model/#components): Allows one to create custom resources that encapsulate one's best practices. In this example, component resource is used to define a "VPC" custom resource, a "Backend" custom resource that sets up the RDS DB, and a "Frontend" resource that sets up the ECS cluster and load balancer and tasks.
8
-
-[Other Providers](https://www.pulumi.com/docs/reference/pkg/): Beyond the providers for the various clouds and Kubernetes, etc, Pulumi allows one to create and manage non-cloud resources. In this case, the program uses the Random provider to create a random password if necessary.
8
+
-[Other Providers](https://www.pulumi.com/registry/): Beyond the providers for the various clouds and Kubernetes, etc, Pulumi allows one to create and manage non-cloud resources. In this case, the program uses the Random provider to create a random password if necessary.
9
9
10
10
This sample uses the following AWS products (and related Pulumi providers):
Copy file name to clipboardExpand all lines: aws-ts-wordpress-fargate-rds/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This example serves a WordPress site in AWS ECS Fargate using an RDS MySQL Backe
5
5
It leverages the following Pulumi concepts/constructs:
6
6
7
7
-[Component Resources](https://www.pulumi.com/docs/intro/concepts/programming-model/#components): Allows one to create custom resources that encapsulate one's best practices. In this example, component resource is used to define a "VPC" custom resource, a "Backend" custom resource that sets up the RDS DB, and a "Frontend" resource that sets up the ECS cluster and load balancer and tasks.
8
-
-[Other Providers](https://www.pulumi.com/docs/reference/pkg/): Beyond the providers for the various clouds and Kubernetes, etc, Pulumi allows one to create and manage non-cloud resources. In this case, the program uses the Random provider to create a random password if necessary.
8
+
-[Other Providers](https://www.pulumi.com/registry/): Beyond the providers for the various clouds and Kubernetes, etc, Pulumi allows one to create and manage non-cloud resources. In this case, the program uses the Random provider to create a random password if necessary.
9
9
10
10
This sample uses the following AWS products (and related Pulumi providers):
Copy file name to clipboardExpand all lines: libvirt-py-vm/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,16 @@
2
2
3
3
# Using the Pulumi Libvirt Provider to Deploy a VM on a KVM Server
4
4
5
-
Deploys a KVM server in Azure and then deploys a small Linux VM on that KVM server.
6
-
It uses the Pulumi Libvirt provider (https://www.pulumi.com/docs/reference/pkg/libvirt/) and nested virtualization that is supported by certain Azure instance types to accomplish this.
5
+
Deploys a KVM server in Azure and then deploys a small Linux VM on that KVM server.
6
+
It uses the Pulumi Libvirt provider (https://www.pulumi.com/registry/packages/libvirt/) and nested virtualization that is supported by certain Azure instance types to accomplish this.
7
7
8
8
## Running the App
9
9
10
10
1. The libvirt provider uses the libvirt module. Therefore, libvirt needs to be installed on the machine from which you are running pulumi.
11
11
- Mac: `brew install libvirt`
12
12
- Windows: See: https://libvirt.org/windows.html
13
13
- Others: https://libvirt.org/downloads.html
14
-
14
+
15
15
1. Create a new stack:
16
16
17
17
```
@@ -54,8 +54,8 @@ It uses the Pulumi Libvirt provider (https://www.pulumi.com/docs/reference/pkg/l
54
54
Duration: 3m36s
55
55
```
56
56
57
-
1. Check the VM on the KVM host:
58
-
The stack generates an output that provides a string you can execute to run `virsh` remotely on the KVM host.
57
+
1. Check the VM on the KVM host:
58
+
The stack generates an output that provides a string you can execute to run `virsh` remotely on the KVM host.
59
59
It will look something like
60
60
```
61
61
echo virsh list | ssh -i libvirt-ex-dev-kvm_server.priv [email protected]
0 commit comments