pulumi-docker-build 0.0.2__py3-none-any.whl → 0.0.3__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 +6 -6
- pulumi_docker_build/image.py +4 -4
- pulumi_docker_build/outputs.py +6 -6
- pulumi_docker_build/pulumi-plugin.json +2 -1
- {pulumi_docker_build-0.0.2.dist-info → pulumi_docker_build-0.0.3.dist-info}/METADATA +1 -1
- {pulumi_docker_build-0.0.2.dist-info → pulumi_docker_build-0.0.3.dist-info}/RECORD +8 -8
- {pulumi_docker_build-0.0.2.dist-info → pulumi_docker_build-0.0.3.dist-info}/WHEEL +0 -0
- {pulumi_docker_build-0.0.2.dist-info → pulumi_docker_build-0.0.3.dist-info}/top_level.txt +0 -0
pulumi_docker_build/_inputs.py
CHANGED
|
@@ -208,7 +208,7 @@ class CacheFromGitHubActionsArgs:
|
|
|
208
208
|
environment variable to your jobs.
|
|
209
209
|
:param pulumi.Input[str] url: The cache server URL to use for artifacts.
|
|
210
210
|
|
|
211
|
-
Defaults to `$
|
|
211
|
+
Defaults to `$ACTIONS_CACHE_URL`, although a separate action like
|
|
212
212
|
`crazy-max/ghaction-github-runtime` is recommended to expose this
|
|
213
213
|
environment variable to your jobs.
|
|
214
214
|
"""
|
|
@@ -221,7 +221,7 @@ class CacheFromGitHubActionsArgs:
|
|
|
221
221
|
if token is not None:
|
|
222
222
|
pulumi.set(__self__, "token", token)
|
|
223
223
|
if url is None:
|
|
224
|
-
url = (_utilities.get_env('
|
|
224
|
+
url = (_utilities.get_env('ACTIONS_CACHE_URL') or '')
|
|
225
225
|
if url is not None:
|
|
226
226
|
pulumi.set(__self__, "url", url)
|
|
227
227
|
|
|
@@ -263,7 +263,7 @@ class CacheFromGitHubActionsArgs:
|
|
|
263
263
|
"""
|
|
264
264
|
The cache server URL to use for artifacts.
|
|
265
265
|
|
|
266
|
-
Defaults to `$
|
|
266
|
+
Defaults to `$ACTIONS_CACHE_URL`, although a separate action like
|
|
267
267
|
`crazy-max/ghaction-github-runtime` is recommended to expose this
|
|
268
268
|
environment variable to your jobs.
|
|
269
269
|
"""
|
|
@@ -749,7 +749,7 @@ class CacheToGitHubActionsArgs:
|
|
|
749
749
|
environment variable to your jobs.
|
|
750
750
|
:param pulumi.Input[str] url: The cache server URL to use for artifacts.
|
|
751
751
|
|
|
752
|
-
Defaults to `$
|
|
752
|
+
Defaults to `$ACTIONS_CACHE_URL`, although a separate action like
|
|
753
753
|
`crazy-max/ghaction-github-runtime` is recommended to expose this
|
|
754
754
|
environment variable to your jobs.
|
|
755
755
|
"""
|
|
@@ -770,7 +770,7 @@ class CacheToGitHubActionsArgs:
|
|
|
770
770
|
if token is not None:
|
|
771
771
|
pulumi.set(__self__, "token", token)
|
|
772
772
|
if url is None:
|
|
773
|
-
url = (_utilities.get_env('
|
|
773
|
+
url = (_utilities.get_env('ACTIONS_CACHE_URL') or '')
|
|
774
774
|
if url is not None:
|
|
775
775
|
pulumi.set(__self__, "url", url)
|
|
776
776
|
|
|
@@ -836,7 +836,7 @@ class CacheToGitHubActionsArgs:
|
|
|
836
836
|
"""
|
|
837
837
|
The cache server URL to use for artifacts.
|
|
838
838
|
|
|
839
|
-
Defaults to `$
|
|
839
|
+
Defaults to `$ACTIONS_CACHE_URL`, although a separate action like
|
|
840
840
|
`crazy-max/ghaction-github-runtime` is recommended to expose this
|
|
841
841
|
environment variable to your jobs.
|
|
842
842
|
"""
|
pulumi_docker_build/image.py
CHANGED
|
@@ -76,7 +76,7 @@ class ImageArgs:
|
|
|
76
76
|
:param pulumi.Input[Sequence[pulumi.Input['CacheToArgs']]] cache_to: Cache import configuration.
|
|
77
77
|
|
|
78
78
|
Equivalent to Docker's `--cache-to` flag.
|
|
79
|
-
:param pulumi.Input['BuildContextArgs'] context: Build context settings.
|
|
79
|
+
:param pulumi.Input['BuildContextArgs'] context: Build context settings. Defaults to the current directory.
|
|
80
80
|
|
|
81
81
|
Equivalent to Docker's `PATH | URL | -` positional argument.
|
|
82
82
|
:param pulumi.Input['DockerfileArgs'] dockerfile: Dockerfile settings.
|
|
@@ -328,7 +328,7 @@ class ImageArgs:
|
|
|
328
328
|
@pulumi.getter
|
|
329
329
|
def context(self) -> Optional[pulumi.Input['BuildContextArgs']]:
|
|
330
330
|
"""
|
|
331
|
-
Build context settings.
|
|
331
|
+
Build context settings. Defaults to the current directory.
|
|
332
332
|
|
|
333
333
|
Equivalent to Docker's `PATH | URL | -` positional argument.
|
|
334
334
|
"""
|
|
@@ -944,7 +944,7 @@ class Image(pulumi.CustomResource):
|
|
|
944
944
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CacheToArgs']]]] cache_to: Cache import configuration.
|
|
945
945
|
|
|
946
946
|
Equivalent to Docker's `--cache-to` flag.
|
|
947
|
-
:param pulumi.Input[pulumi.InputType['BuildContextArgs']] context: Build context settings.
|
|
947
|
+
:param pulumi.Input[pulumi.InputType['BuildContextArgs']] context: Build context settings. Defaults to the current directory.
|
|
948
948
|
|
|
949
949
|
Equivalent to Docker's `PATH | URL | -` positional argument.
|
|
950
950
|
:param pulumi.Input[pulumi.InputType['DockerfileArgs']] dockerfile: Dockerfile settings.
|
|
@@ -1552,7 +1552,7 @@ class Image(pulumi.CustomResource):
|
|
|
1552
1552
|
@pulumi.getter
|
|
1553
1553
|
def context(self) -> pulumi.Output[Optional['outputs.BuildContext']]:
|
|
1554
1554
|
"""
|
|
1555
|
-
Build context settings.
|
|
1555
|
+
Build context settings. Defaults to the current directory.
|
|
1556
1556
|
|
|
1557
1557
|
Equivalent to Docker's `PATH | URL | -` positional argument.
|
|
1558
1558
|
"""
|
pulumi_docker_build/outputs.py
CHANGED
|
@@ -305,7 +305,7 @@ class CacheFromGitHubActions(dict):
|
|
|
305
305
|
environment variable to your jobs.
|
|
306
306
|
:param str url: The cache server URL to use for artifacts.
|
|
307
307
|
|
|
308
|
-
Defaults to `$
|
|
308
|
+
Defaults to `$ACTIONS_CACHE_URL`, although a separate action like
|
|
309
309
|
`crazy-max/ghaction-github-runtime` is recommended to expose this
|
|
310
310
|
environment variable to your jobs.
|
|
311
311
|
"""
|
|
@@ -318,7 +318,7 @@ class CacheFromGitHubActions(dict):
|
|
|
318
318
|
if token is not None:
|
|
319
319
|
pulumi.set(__self__, "token", token)
|
|
320
320
|
if url is None:
|
|
321
|
-
url = (_utilities.get_env('
|
|
321
|
+
url = (_utilities.get_env('ACTIONS_CACHE_URL') or '')
|
|
322
322
|
if url is not None:
|
|
323
323
|
pulumi.set(__self__, "url", url)
|
|
324
324
|
|
|
@@ -352,7 +352,7 @@ class CacheFromGitHubActions(dict):
|
|
|
352
352
|
"""
|
|
353
353
|
The cache server URL to use for artifacts.
|
|
354
354
|
|
|
355
|
-
Defaults to `$
|
|
355
|
+
Defaults to `$ACTIONS_CACHE_URL`, although a separate action like
|
|
356
356
|
`crazy-max/ghaction-github-runtime` is recommended to expose this
|
|
357
357
|
environment variable to your jobs.
|
|
358
358
|
"""
|
|
@@ -817,7 +817,7 @@ class CacheToGitHubActions(dict):
|
|
|
817
817
|
environment variable to your jobs.
|
|
818
818
|
:param str url: The cache server URL to use for artifacts.
|
|
819
819
|
|
|
820
|
-
Defaults to `$
|
|
820
|
+
Defaults to `$ACTIONS_CACHE_URL`, although a separate action like
|
|
821
821
|
`crazy-max/ghaction-github-runtime` is recommended to expose this
|
|
822
822
|
environment variable to your jobs.
|
|
823
823
|
"""
|
|
@@ -838,7 +838,7 @@ class CacheToGitHubActions(dict):
|
|
|
838
838
|
if token is not None:
|
|
839
839
|
pulumi.set(__self__, "token", token)
|
|
840
840
|
if url is None:
|
|
841
|
-
url = (_utilities.get_env('
|
|
841
|
+
url = (_utilities.get_env('ACTIONS_CACHE_URL') or '')
|
|
842
842
|
if url is not None:
|
|
843
843
|
pulumi.set(__self__, "url", url)
|
|
844
844
|
|
|
@@ -888,7 +888,7 @@ class CacheToGitHubActions(dict):
|
|
|
888
888
|
"""
|
|
889
889
|
The cache server URL to use for artifacts.
|
|
890
890
|
|
|
891
|
-
Defaults to `$
|
|
891
|
+
Defaults to `$ACTIONS_CACHE_URL`, although a separate action like
|
|
892
892
|
`crazy-max/ghaction-github-runtime` is recommended to expose this
|
|
893
893
|
environment variable to your jobs.
|
|
894
894
|
"""
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
pulumi_docker_build/__init__.py,sha256=jbA6SMpisvwJDycUKuo4IXVJ5_qjIao_1iPP9lcZ-Vw,983
|
|
2
2
|
pulumi_docker_build/_enums.py,sha256=yfsDmimBobvf70zx6VAR_6ABp50Dan452rpIFVs8jkA,1928
|
|
3
|
-
pulumi_docker_build/_inputs.py,sha256=
|
|
3
|
+
pulumi_docker_build/_inputs.py,sha256=5BR5iN2zSZgH6sXxZfh2F_JpMjtkitqBwr76MOCPS-8,97952
|
|
4
4
|
pulumi_docker_build/_utilities.py,sha256=GzGkkcCHl56rhrwBOUvVkUvrjPsBOA37ZH6NsPQOiKI,9230
|
|
5
|
-
pulumi_docker_build/image.py,sha256=
|
|
5
|
+
pulumi_docker_build/image.py,sha256=SGqqP3qPFADRK9BI-teKne_fF078mHPx01ByyyV2VW8,75827
|
|
6
6
|
pulumi_docker_build/index.py,sha256=UovlVuMLsHogF2-U0-Lzxu1gi8LLixPQHTOgP-YYZ60,14598
|
|
7
|
-
pulumi_docker_build/outputs.py,sha256=
|
|
7
|
+
pulumi_docker_build/outputs.py,sha256=fJrTHocv5estX9VKAzMJXj_k6NnKPAyS91Ar9Zo9FfM,83241
|
|
8
8
|
pulumi_docker_build/provider.py,sha256=5f1FtyHXjxcCA3nouMG5HVJyrBEdCB452ezcNt53NmQ,4780
|
|
9
|
-
pulumi_docker_build/pulumi-plugin.json,sha256=
|
|
9
|
+
pulumi_docker_build/pulumi-plugin.json,sha256=eGdO-OWIGJCEOYIrcvjkAsxFt5rgtASL0kdYKWVil0A,71
|
|
10
10
|
pulumi_docker_build/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
pulumi_docker_build/config/__init__.py,sha256=YdGLR92OvYD0CYDgt_FTaHJOb_VzW8fto_Cgx6fLd3k,267
|
|
12
12
|
pulumi_docker_build/config/__init__.pyi,sha256=2lJs0q5nxrEi63kCCpe7M23-j-0NiQu9UpKaYAWe5TM,441
|
|
13
13
|
pulumi_docker_build/config/vars.py,sha256=6g1SHA-v-YBMxDX9KwlhaZZ3Yk7DzC5_EB2xz0FQiKo,756
|
|
14
|
-
pulumi_docker_build-0.0.
|
|
15
|
-
pulumi_docker_build-0.0.
|
|
16
|
-
pulumi_docker_build-0.0.
|
|
17
|
-
pulumi_docker_build-0.0.
|
|
14
|
+
pulumi_docker_build-0.0.3.dist-info/METADATA,sha256=WU9bR-rwbmwQitd0pKUEvyXOiQYt-gfU2UmhhjrF6Fg,2546
|
|
15
|
+
pulumi_docker_build-0.0.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
16
|
+
pulumi_docker_build-0.0.3.dist-info/top_level.txt,sha256=-O-MiPQ61mhil3wD9QdYf8yA4r5vNPmBgSGdi9cOQ18,20
|
|
17
|
+
pulumi_docker_build-0.0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|