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: sdk/python/README.md
+69-11Lines changed: 69 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,26 @@ layout: package
7
7
The Runpod provider for Pulumi can be used to provision [Runpod](https://www.runpod.io) resources.
8
8
The Runpod provider must be configured with Runpod's API keys to deploy and update resources in Runpod.
9
9
10
+
## Pulumi guide
11
+
Create an empty directory and navigate inside
12
+
13
+
```bash
14
+
mkdir -p empty
15
+
cd empty
16
+
```
17
+
18
+
Create a new pulumi stack:
19
+
```
20
+
pulumi new
21
+
```
22
+
23
+
A dropdown box will appear. Please select a minimal project from in there. For example, if you prefer using Go, you would select the following:
24
+
```bash
25
+
go A minimal Go Pulumi program
26
+
```
27
+
28
+
Then populate the entrypoint file (__main__.py/main.go/index.ts) with the your data. Please use the guide below to understand more about what parameters are possible for each resource. For Python, please remember to activate the virtual environment.
29
+
10
30
## Config
11
31
12
32
To begin with, please set your runpod API key to use with Pulumi.
@@ -17,16 +37,15 @@ To begin with, please set your runpod API key to use with Pulumi.
17
37
18
38
## Example
19
39
20
-
This is an example of how to deploy it over Golang. We also serve pulumi over Typescript and Python. For more examples, please navigate to the examples directory
21
-
or the documents inside docs. If you have any problems in doing so, please contact [email protected].
40
+
This is an example of how to deploy it over Golang. We also serve pulumi over Typescript and Python. For more examples, please navigate to the examples directory or the docs/installation-configuration.md file. If you have any problems in doing so, please contact [email protected].
22
41
23
42
1. Create a new Pulumi Go example:
24
43
```
25
44
pulumi new
26
45
```
27
46
Select either the Go template or Runpod's Go template.
28
47
29
-
2. Set your API keys using the config shown above.
48
+
2. Set your API keys using the process shown above.
Copy file name to clipboardExpand all lines: sdk/python/runpodinfra.egg-info/PKG-INFO
+70-12Lines changed: 70 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
Metadata-Version: 2.1
2
2
Name: runpodinfra
3
-
Version: 1.9.98
3
+
Version: 1.9.99
4
4
Summary: The Runpod Pulumi provider provides resources to interact with Runpod's native APIs.
5
5
Home-page: https://runpod.io
6
6
License: Apache-2.0
@@ -21,6 +21,26 @@ layout: package
21
21
The Runpod provider for Pulumi can be used to provision [Runpod](https://www.runpod.io) resources.
22
22
The Runpod provider must be configured with Runpod's API keys to deploy and update resources in Runpod.
23
23
24
+
## Pulumi guide
25
+
Create an empty directory and navigate inside
26
+
27
+
```bash
28
+
mkdir -p empty
29
+
cd empty
30
+
```
31
+
32
+
Create a new pulumi stack:
33
+
```
34
+
pulumi new
35
+
```
36
+
37
+
A dropdown box will appear. Please select a minimal project from in there. For example, if you prefer using Go, you would select the following:
38
+
```bash
39
+
go A minimal Go Pulumi program
40
+
```
41
+
42
+
Then populate the entrypoint file (__main__.py/main.go/index.ts) with the your data. Please use the guide below to understand more about what parameters are possible for each resource. For Python, please remember to activate the virtual environment.
43
+
24
44
## Config
25
45
26
46
To begin with, please set your runpod API key to use with Pulumi.
@@ -31,16 +51,15 @@ To begin with, please set your runpod API key to use with Pulumi.
31
51
32
52
## Example
33
53
34
-
This is an example of how to deploy it over Golang. We also serve pulumi over Typescript and Python. For more examples, please navigate to the examples directory
35
-
or the documents inside docs. If you have any problems in doing so, please contact [email protected].
54
+
This is an example of how to deploy it over Golang. We also serve pulumi over Typescript and Python. For more examples, please navigate to the examples directory or the docs/installation-configuration.md file. If you have any problems in doing so, please contact [email protected].
36
55
37
56
1. Create a new Pulumi Go example:
38
57
```
39
58
pulumi new
40
59
```
41
60
Select either the Go template or Runpod's Go template.
42
61
43
-
2. Set your API keys using the config shown above.
62
+
2. Set your API keys using the process shown above.
0 commit comments