pulumi-docker-build 0.0.5__py3-none-any.whl → 0.0.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-docker-build might be problematic. Click here for more details.
- pulumi_docker_build/_inputs.py +829 -16
- pulumi_docker_build/_utilities.py +1 -1
- pulumi_docker_build/config/__init__.pyi +5 -0
- pulumi_docker_build/config/vars.py +5 -0
- pulumi_docker_build/image.py +179 -174
- pulumi_docker_build/index.py +61 -56
- pulumi_docker_build/outputs.py +5 -0
- pulumi_docker_build/provider.py +5 -0
- pulumi_docker_build/pulumi-plugin.json +1 -1
- {pulumi_docker_build-0.0.5.dist-info → pulumi_docker_build-0.0.7.dist-info}/METADATA +3 -2
- pulumi_docker_build-0.0.7.dist-info/RECORD +17 -0
- {pulumi_docker_build-0.0.5.dist-info → pulumi_docker_build-0.0.7.dist-info}/WHEEL +1 -1
- pulumi_docker_build-0.0.5.dist-info/RECORD +0 -17
- {pulumi_docker_build-0.0.5.dist-info → pulumi_docker_build-0.0.7.dist-info}/top_level.txt +0 -0
pulumi_docker_build/index.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._inputs import *
|
|
@@ -131,37 +136,37 @@ class Index(pulumi.CustomResource):
|
|
|
131
136
|
import pulumi_docker_build as docker_build
|
|
132
137
|
|
|
133
138
|
amd64 = docker_build.Image("amd64",
|
|
134
|
-
cache_from=[
|
|
135
|
-
registry
|
|
136
|
-
ref
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
cache_to=[
|
|
140
|
-
registry
|
|
141
|
-
mode
|
|
142
|
-
ref
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
context=
|
|
146
|
-
location
|
|
147
|
-
|
|
139
|
+
cache_from=[{
|
|
140
|
+
"registry": {
|
|
141
|
+
"ref": "docker.io/pulumi/pulumi:cache-amd64",
|
|
142
|
+
},
|
|
143
|
+
}],
|
|
144
|
+
cache_to=[{
|
|
145
|
+
"registry": {
|
|
146
|
+
"mode": docker_build.CacheMode.MAX,
|
|
147
|
+
"ref": "docker.io/pulumi/pulumi:cache-amd64",
|
|
148
|
+
},
|
|
149
|
+
}],
|
|
150
|
+
context={
|
|
151
|
+
"location": "app",
|
|
152
|
+
},
|
|
148
153
|
platforms=[docker_build.Platform.LINUX_AMD64],
|
|
149
154
|
tags=["docker.io/pulumi/pulumi:3.107.0-amd64"])
|
|
150
155
|
arm64 = docker_build.Image("arm64",
|
|
151
|
-
cache_from=[
|
|
152
|
-
registry
|
|
153
|
-
ref
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
cache_to=[
|
|
157
|
-
registry
|
|
158
|
-
mode
|
|
159
|
-
ref
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
context=
|
|
163
|
-
location
|
|
164
|
-
|
|
156
|
+
cache_from=[{
|
|
157
|
+
"registry": {
|
|
158
|
+
"ref": "docker.io/pulumi/pulumi:cache-arm64",
|
|
159
|
+
},
|
|
160
|
+
}],
|
|
161
|
+
cache_to=[{
|
|
162
|
+
"registry": {
|
|
163
|
+
"mode": docker_build.CacheMode.MAX,
|
|
164
|
+
"ref": "docker.io/pulumi/pulumi:cache-arm64",
|
|
165
|
+
},
|
|
166
|
+
}],
|
|
167
|
+
context={
|
|
168
|
+
"location": "app",
|
|
169
|
+
},
|
|
165
170
|
platforms=[docker_build.Platform.LINUX_ARM64],
|
|
166
171
|
tags=["docker.io/pulumi/pulumi:3.107.0-arm64"])
|
|
167
172
|
index = docker_build.Index("index",
|
|
@@ -218,37 +223,37 @@ class Index(pulumi.CustomResource):
|
|
|
218
223
|
import pulumi_docker_build as docker_build
|
|
219
224
|
|
|
220
225
|
amd64 = docker_build.Image("amd64",
|
|
221
|
-
cache_from=[
|
|
222
|
-
registry
|
|
223
|
-
ref
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
cache_to=[
|
|
227
|
-
registry
|
|
228
|
-
mode
|
|
229
|
-
ref
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
context=
|
|
233
|
-
location
|
|
234
|
-
|
|
226
|
+
cache_from=[{
|
|
227
|
+
"registry": {
|
|
228
|
+
"ref": "docker.io/pulumi/pulumi:cache-amd64",
|
|
229
|
+
},
|
|
230
|
+
}],
|
|
231
|
+
cache_to=[{
|
|
232
|
+
"registry": {
|
|
233
|
+
"mode": docker_build.CacheMode.MAX,
|
|
234
|
+
"ref": "docker.io/pulumi/pulumi:cache-amd64",
|
|
235
|
+
},
|
|
236
|
+
}],
|
|
237
|
+
context={
|
|
238
|
+
"location": "app",
|
|
239
|
+
},
|
|
235
240
|
platforms=[docker_build.Platform.LINUX_AMD64],
|
|
236
241
|
tags=["docker.io/pulumi/pulumi:3.107.0-amd64"])
|
|
237
242
|
arm64 = docker_build.Image("arm64",
|
|
238
|
-
cache_from=[
|
|
239
|
-
registry
|
|
240
|
-
ref
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
cache_to=[
|
|
244
|
-
registry
|
|
245
|
-
mode
|
|
246
|
-
ref
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
context=
|
|
250
|
-
location
|
|
251
|
-
|
|
243
|
+
cache_from=[{
|
|
244
|
+
"registry": {
|
|
245
|
+
"ref": "docker.io/pulumi/pulumi:cache-arm64",
|
|
246
|
+
},
|
|
247
|
+
}],
|
|
248
|
+
cache_to=[{
|
|
249
|
+
"registry": {
|
|
250
|
+
"mode": docker_build.CacheMode.MAX,
|
|
251
|
+
"ref": "docker.io/pulumi/pulumi:cache-arm64",
|
|
252
|
+
},
|
|
253
|
+
}],
|
|
254
|
+
context={
|
|
255
|
+
"location": "app",
|
|
256
|
+
},
|
|
252
257
|
platforms=[docker_build.Platform.LINUX_ARM64],
|
|
253
258
|
tags=["docker.io/pulumi/pulumi:3.107.0-arm64"])
|
|
254
259
|
index = docker_build.Index("index",
|
pulumi_docker_build/outputs.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from . import outputs
|
|
12
17
|
from ._enums import *
|
pulumi_docker_build/provider.py
CHANGED
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
from ._inputs import *
|
|
12
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_docker_build
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: A Pulumi provider for building modern Docker images with buildx and BuildKit.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.com
|
|
@@ -9,8 +9,9 @@ Keywords: docker,buildkit,buildx,kind/native
|
|
|
9
9
|
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
|
12
|
-
Requires-Dist: pulumi <4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.136.0
|
|
13
13
|
Requires-Dist: semver >=2.8.1
|
|
14
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
|
14
15
|
|
|
15
16
|
[](https://slack.pulumi.com)
|
|
16
17
|
[](https://www.npmjs.com/package/@pulumi/docker-build)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
pulumi_docker_build/__init__.py,sha256=jbA6SMpisvwJDycUKuo4IXVJ5_qjIao_1iPP9lcZ-Vw,983
|
|
2
|
+
pulumi_docker_build/_enums.py,sha256=yfsDmimBobvf70zx6VAR_6ABp50Dan452rpIFVs8jkA,1928
|
|
3
|
+
pulumi_docker_build/_inputs.py,sha256=aXJ4xqK0KBLf6vQWsqsnYM1yqSHfaB64nv-Vcp6_4Og,124044
|
|
4
|
+
pulumi_docker_build/_utilities.py,sha256=UL5vEmfNrBfiaeFQS69cz7xlHoBnPH8PY_UIVNwShcM,10486
|
|
5
|
+
pulumi_docker_build/image.py,sha256=cBqT8ex0aTklG6KVLj66co1grQgCZJOAO2Z2AUYTItI,74877
|
|
6
|
+
pulumi_docker_build/index.py,sha256=IMpevb9_ktXNcgF17qMAq-Dh15HC4HZbKp0A62faoEw,14291
|
|
7
|
+
pulumi_docker_build/outputs.py,sha256=F-PATYfU3BD0f0PEdGsaWMYSthp698pgX0LH8Mfk9lU,83415
|
|
8
|
+
pulumi_docker_build/provider.py,sha256=ds0_lPqQ0LuP9fsHLUHg6IvolD4fIBnU3oife3038x4,4972
|
|
9
|
+
pulumi_docker_build/pulumi-plugin.json,sha256=44759sm11LVv2I8A02Fc8tRUFT8R3wlSxrx0emv7EdQ,71
|
|
10
|
+
pulumi_docker_build/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pulumi_docker_build/config/__init__.py,sha256=YdGLR92OvYD0CYDgt_FTaHJOb_VzW8fto_Cgx6fLd3k,267
|
|
12
|
+
pulumi_docker_build/config/__init__.pyi,sha256=2Yij9qLlwh_pi5ytfw8UgvI4KgmE-OC2fNuRQzFrKgk,615
|
|
13
|
+
pulumi_docker_build/config/vars.py,sha256=IeckzaS3wTGp0HlnJtyacWm2u7rm150AuK9jv6r9pGY,930
|
|
14
|
+
pulumi_docker_build-0.0.7.dist-info/METADATA,sha256=LbW_gKv5nU1wOScS8VjN-lTp2FTVTR9fWbg0edbSEwo,2614
|
|
15
|
+
pulumi_docker_build-0.0.7.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
16
|
+
pulumi_docker_build-0.0.7.dist-info/top_level.txt,sha256=-O-MiPQ61mhil3wD9QdYf8yA4r5vNPmBgSGdi9cOQ18,20
|
|
17
|
+
pulumi_docker_build-0.0.7.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
pulumi_docker_build/__init__.py,sha256=jbA6SMpisvwJDycUKuo4IXVJ5_qjIao_1iPP9lcZ-Vw,983
|
|
2
|
-
pulumi_docker_build/_enums.py,sha256=yfsDmimBobvf70zx6VAR_6ABp50Dan452rpIFVs8jkA,1928
|
|
3
|
-
pulumi_docker_build/_inputs.py,sha256=5BR5iN2zSZgH6sXxZfh2F_JpMjtkitqBwr76MOCPS-8,97952
|
|
4
|
-
pulumi_docker_build/_utilities.py,sha256=TZWmMJOOzIbeJ63eFk5Tkx9TRUBUL4deSG05KQZyUug,10488
|
|
5
|
-
pulumi_docker_build/image.py,sha256=JYpdxRlC5BJ9o7vc0SfZ-4KvEPhmXlPW382VRy2o16E,76055
|
|
6
|
-
pulumi_docker_build/index.py,sha256=rZ5ZmqjBOTx72WGDPthT9VRiCyJW9N1xJrceNlyQd6s,14625
|
|
7
|
-
pulumi_docker_build/outputs.py,sha256=fJrTHocv5estX9VKAzMJXj_k6NnKPAyS91Ar9Zo9FfM,83241
|
|
8
|
-
pulumi_docker_build/provider.py,sha256=3Slh1kBpK8WSiXVqQ5cWrVu8o32XkvDl-x2htd4WLIQ,4798
|
|
9
|
-
pulumi_docker_build/pulumi-plugin.json,sha256=EsgcQfu3w6IskyslgsJGO0C7-lE1W_lOBMbPs9ss9Jg,71
|
|
10
|
-
pulumi_docker_build/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pulumi_docker_build/config/__init__.py,sha256=YdGLR92OvYD0CYDgt_FTaHJOb_VzW8fto_Cgx6fLd3k,267
|
|
12
|
-
pulumi_docker_build/config/__init__.pyi,sha256=2lJs0q5nxrEi63kCCpe7M23-j-0NiQu9UpKaYAWe5TM,441
|
|
13
|
-
pulumi_docker_build/config/vars.py,sha256=6g1SHA-v-YBMxDX9KwlhaZZ3Yk7DzC5_EB2xz0FQiKo,756
|
|
14
|
-
pulumi_docker_build-0.0.5.dist-info/METADATA,sha256=SllQU2ESAy9RT2NYeX0f592gJPKOnVwz5r0tNbAbNho,2546
|
|
15
|
-
pulumi_docker_build-0.0.5.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
16
|
-
pulumi_docker_build-0.0.5.dist-info/top_level.txt,sha256=-O-MiPQ61mhil3wD9QdYf8yA4r5vNPmBgSGdi9cOQ18,20
|
|
17
|
-
pulumi_docker_build-0.0.5.dist-info/RECORD,,
|
|
File without changes
|