Skip to content

Commit 0a29342

Browse files
Merge pull request #3 from score-spec/mathieu-benoit-patch-1
Updates in Examples
2 parents cc34443 + 7396ba5 commit 0a29342

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

resources/score-compose.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
## Initialize your local workspace
1+
Initialize your local workspace
22

33
This will use the default provisioners, you can use other provisioners instead like illustrated [here](https://github.dev/score-spec/community-provisioners).
44

55
```bash
66
score-commpose init
77
```
88

9-
## Get the provisioner definition
9+
Get the provisioner definition
1010

1111
```bash
1212
score-compose provisioners list
1313
```
1414

15-
## Generate the platform specific manifests
15+
Generate the platform specific manifests
1616

1717
```bash
1818
score-commpose generate score.yaml
1919
```
2020

21-
## See the resource outputs
21+
See the resource outputs
2222

2323
```bash
2424
score-commpose resources list
2525
```
2626

2727
You can run `score-compose resources get-outputs` on each resource listed to get their `outputs`.
2828

29-
## Deploy the generated manifests
29+
Deploy the generated manifests
3030

3131
```bash
3232
docker compose up -d
3333
```
3434

35-
## See the running containers
35+
See the running containers
3636

3737
```bash
3838
docker ps
39-
```
39+
```

resources/score-k8s.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
## Initialize your local workspace
1+
Initialize your local workspace
22

33
This will use the default provisioners, you can use other provisioners instead like illustrated [here](https://github.dev/score-spec/community-provisioners).
44

55
```bash
66
score-k8s init
77
```
88

9-
## Get the provisioner definition
9+
Get the provisioner definition
1010

1111
```bash
1212
score-k8s provisioners list
1313
```
1414

15-
## Generate the platform specific manifests
15+
Generate the platform specific manifests
1616

1717
```bash
1818
score-k8s generate score.yaml
1919
```
2020

21-
## See the resource outputs
21+
See the resource outputs
2222

2323
```bash
2424
score-k8s resources list
2525
```
2626

2727
You can run `score-k8s resources get-outputs` on each resource listed to get their `outputs`.
2828

29-
## Deploy the generated manifests
29+
Deploy the generated manifests
3030

3131
```bash
3232
kubectl apply -f manifests.yaml
3333
```
3434

35-
## See the running containers
35+
See the running containers
3636

3737
```bash
3838
kubectl get all
39-
```
39+
```

specification/score-compose.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
## Initialize your local workspace
1+
Initialize your local workspace
22

33
```bash
44
score-compose init
55
```
66

7-
## Generate the platform specific manifests
7+
Generate the platform specific manifests
88

99
```bash
1010
score-compose generate score.yaml --image busybox
1111
```
1212

13-
## Deploy the generated manifests
13+
Deploy the generated manifests
1414

1515
```bash
1616
docker compose up -d
1717
```
1818

19-
## See the running containers
19+
See the running containers
2020

2121
```bash
2222
docker ps
23-
```
23+
```

specification/score-k8s.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
## Initialize your local workspace
1+
Initialize your local workspace
22

33
```bash
44
score-k8s init
55
```
66

7-
## Generate the platform specific manifests
7+
Generate the platform specific manifests
88

99
```bash
1010
score-k8s generate score.yaml --image busybox
1111
```
1212

13-
## Deploy the generated manifests
13+
Deploy the generated manifests
1414

1515
```bash
1616
kubectl apply -f manifests.yaml
1717
```
1818

19-
## See the running containers
19+
See the running containers
2020

2121
```bash
2222
kubectl get all
23-
```
23+
```

0 commit comments

Comments
 (0)