-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: rabelmervin <[email protected]>
- Loading branch information
1 parent
f1f509f
commit d55e66d
Showing
4 changed files
with
109 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Score provides a developer-centric and platform-agnostic | ||
# Workload specification to improve developer productivity and experience. | ||
# Score eliminates configuration management between local and remote environments. | ||
# | ||
# Specification reference: https://docs.score.dev/docs/reference/score-spec-reference/ | ||
--- | ||
|
||
# Score specification version | ||
apiVersion: score.dev/v1b1 | ||
|
||
metadata: | ||
name: example | ||
|
||
containers: | ||
hello-world: | ||
image: nginx:latest | ||
|
||
# Uncomment the following for a custom entrypoint command | ||
# command: [] | ||
|
||
# Uncomment the following for custom arguments | ||
# args: [] | ||
|
||
# Environment variables to inject into the container | ||
variables: | ||
EXAMPLE_VARIABLE: "example-value" | ||
|
||
service: | ||
ports: | ||
# Expose the http port from nginx on port 8080 | ||
www: | ||
port: 8080 | ||
targetPort: 80 | ||
|
||
resources: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Score provides a developer-centric and platform-agnostic | ||
# Workload specification to improve developer productivity and experience. | ||
# Score eliminates configuration management between local and remote environments. | ||
# | ||
# Specification reference: https://docs.score.dev/docs/reference/score-spec-reference/ | ||
--- | ||
|
||
# Score specification version | ||
apiVersion: score.dev/v1b1 | ||
|
||
metadata: | ||
name: example | ||
|
||
containers: | ||
hello-world: | ||
image: nginx:latest | ||
|
||
# Uncomment the following for a custom entrypoint command | ||
# command: [] | ||
|
||
# Uncomment the following for custom arguments | ||
# args: [] | ||
|
||
# Environment variables to inject into the container | ||
variables: | ||
EXAMPLE_VARIABLE: "example-value" | ||
|
||
service: | ||
ports: | ||
# Expose the http port from nginx on port 8080 | ||
www: | ||
port: 8080 | ||
targetPort: 80 | ||
|
||
resources: {} |