pulumi-docker-build 0.0.1a1714147565__tar.gz → 0.0.3__tar.gz

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.

Files changed (23) hide show
  1. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/PKG-INFO +1 -1
  2. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/_inputs.py +6 -6
  3. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/image.py +4 -4
  4. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/outputs.py +6 -6
  5. pulumi_docker_build-0.0.3/pulumi_docker_build/pulumi-plugin.json +5 -0
  6. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build.egg-info/PKG-INFO +1 -1
  7. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pyproject.toml +1 -1
  8. pulumi_docker_build-0.0.1a1714147565/pulumi_docker_build/pulumi-plugin.json +0 -4
  9. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/README.md +0 -0
  10. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/__init__.py +0 -0
  11. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/_enums.py +0 -0
  12. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/_utilities.py +0 -0
  13. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/config/__init__.py +0 -0
  14. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/config/__init__.pyi +0 -0
  15. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/config/vars.py +0 -0
  16. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/index.py +0 -0
  17. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/provider.py +0 -0
  18. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build/py.typed +0 -0
  19. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build.egg-info/SOURCES.txt +0 -0
  20. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build.egg-info/dependency_links.txt +0 -0
  21. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build.egg-info/requires.txt +0 -0
  22. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/pulumi_docker_build.egg-info/top_level.txt +0 -0
  23. {pulumi_docker_build-0.0.1a1714147565 → pulumi_docker_build-0.0.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_docker_build
3
- Version: 0.0.1a1714147565
3
+ Version: 0.0.3
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
@@ -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 `$ACTIONS_RUNTIME_URL`, although a separate action like
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('ACTIONS_RUNTIME_URL') or '')
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 `$ACTIONS_RUNTIME_URL`, although a separate action like
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 `$ACTIONS_RUNTIME_URL`, although a separate action like
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('ACTIONS_RUNTIME_URL') or '')
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 `$ACTIONS_RUNTIME_URL`, although a separate action like
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
  """
@@ -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
  """
@@ -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 `$ACTIONS_RUNTIME_URL`, although a separate action like
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('ACTIONS_RUNTIME_URL') or '')
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 `$ACTIONS_RUNTIME_URL`, although a separate action like
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 `$ACTIONS_RUNTIME_URL`, although a separate action like
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('ACTIONS_RUNTIME_URL') or '')
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 `$ACTIONS_RUNTIME_URL`, although a separate action like
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
  """
@@ -0,0 +1,5 @@
1
+ {
2
+ "resource": true,
3
+ "name": "docker-build",
4
+ "version": "0.0.3"
5
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_docker_build
3
- Version: 0.0.1a1714147565
3
+ Version: 0.0.3
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
@@ -5,7 +5,7 @@
5
5
  keywords = ["docker", "buildkit", "buildx", "kind/native"]
6
6
  readme = "README.md"
7
7
  requires-python = ">=3.8"
8
- version = "0.0.1a1714147565"
8
+ version = "0.0.3"
9
9
  [project.license]
10
10
  text = "Apache-2.0"
11
11
  [project.urls]
@@ -1,4 +0,0 @@
1
- {
2
- "resource": true,
3
- "name": "docker-build"
4
- }