@@ -119,7 +119,7 @@ Registry (Organization/Team Level)
119119 │
120120 └── Version (Release Level)
121121 ├── version: "1.2.0"
122- ├── checksum: "sha256:abc ..."
122+ ├── checksum: "e3b0c44298fc ..."
123123 ├── url: "https://cdn/deployer-1.2.0.tar.gz"
124124 ├── startPartition: 0
125125 └── endPartition: 9
@@ -366,7 +366,7 @@ curl -X POST http://localhost:8080/api/v1/registry -u admin:password \
366366curl http://localhost:8080/api/v1/registry/devops-tools/index.json
367367```
368368``` json
369- [{"name" : " deployer" , "version" : " 1.0.0" , "checksum" : " sha256:... " ,
369+ [{"name" : " deployer" , "version" : " 1.0.0" , "checksum" : " e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 " ,
370370 "url" : " https://cdn/deployer-1.0.0.tar.gz" , "startPartition" : 0 , "endPartition" : 9 }]
371371```
372372
@@ -388,7 +388,7 @@ curl -X POST http://localhost:8080/api/v1/registry/devops-tools/package -u admin
388388curl -X POST http://localhost:8080/api/v1/registry/devops-tools/package/deployer/version \
389389 -u admin:password -H " Content-Type: application/json" \
390390 -d ' {"name": "deployer", "version": "1.2.0",
391- "checksum": "sha256:e3b0c44298fc1c149afbf4c8996fb924... ",
391+ "checksum": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 ",
392392 "url": "https://cdn.company.com/deployer-1.2.0-linux-amd64.tar.gz",
393393 "startPartition": 0, "endPartition": 9}'
394394```
@@ -524,8 +524,8 @@ Valid: 1.0.0, 2.1.3-alpha, 3.0.0-beta.1+build.123
524524
525525### Checksum Format
526526``` go
527- Pattern: sha256: [64 hex characters]
528- Example: sha256: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
527+ Pattern: [64 hex characters]
528+ Example: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
529529```
530530
531531### Custom Values
0 commit comments