-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from zazuko/cleanup
cleanup
- Loading branch information
Showing
5 changed files
with
175 additions
and
17,634 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,5 +83,4 @@ flux:DeploymentAnnotationTableShape a sh:NodeShape ; | |
sh:name "Value" ; | ||
sh:order 20; | ||
] ; | ||
. | ||
|
||
. |
Empty file.
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 |
---|---|---|
@@ -1,24 +1,51 @@ | ||
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | ||
PREFIX ex: <http://schema.example.org/> | ||
PREFIX sh: <http://www.w3.org/ns/shacl#> | ||
PREFIX schema: <http://schema.org/> | ||
PREFIX fluxShape: <https://ld.flux.zazuko.com/shapes/metadata/> | ||
PREFIX flux: <https://ld.flux.zazuko.com/> | ||
PREFIX fluxSchema: <https://flux.described.at/> | ||
PREFIX prov: <http://www.w3.org/ns/prov#> | ||
|
||
flux:CleanedVariableToCleanedVariableLink a sh:PropertyShape, fluxSchema:Link ; | ||
sh:name "was derived from" ; | ||
sh:path prov:wasDerivedFrom; | ||
sh:class <http://making-sense.info/namespaces/ddi/CleanedVariable> ; | ||
sh:targetClass <http://making-sense.info/namespaces/ddi/CleanedVariable> . | ||
|
||
flux:CleanedVariableToVariableLink a sh:PropertyShape, fluxSchema:Link ; | ||
sh:name "was derived from" ; | ||
sh:path prov:wasDerivedFrom; | ||
sh:class <http://making-sense.info/namespaces/ddi/DDIVariable>; | ||
sh:targetClass <http://making-sense.info/namespaces/ddi/CleanedVariable> . | ||
|
||
flux:CleanedVariableToScriptExecutionLink a sh:PropertyShape, fluxSchema:Link ; | ||
sh:name "was generated by" ; | ||
sh:path prov:wasGeneratedBy; | ||
sh:class <http://making-sense.info/namespaces/ddi/ScriptExecution> ; | ||
sh:targetClass <http://making-sense.info/namespaces/ddi/CleanedVariable> . | ||
PREFIX k8s: <https://k8s.described.at/> | ||
PREFIX oci: <https://oci.described.at/> | ||
|
||
|
||
k8s:Cluster a rdfs:Class . | ||
|
||
flux:NamespaceToClusterLink a sh:PropertyShape, fluxSchema:Link ; | ||
sh:name "runs on" ; | ||
sh:path k8s:cluster ; | ||
sh:class k8s:Cluster ; | ||
sh:targetClass k8s:Namespace ; | ||
. | ||
|
||
|
||
flux:DeploymentToNamespaceLink a sh:PropertyShape, fluxSchema:Link ; | ||
sh:name "belonogs to" ; | ||
sh:path k8s:namespace ; | ||
sh:class k8s:Namespace ; | ||
sh:targetClass k8s:Deployment ; | ||
. | ||
|
||
|
||
flux:DeploymentToImageLink a sh:PropertyShape, fluxSchema:Link ; | ||
sh:name "container image" ; | ||
sh:path k8s:image ; | ||
sh:class oci:Image ; | ||
sh:targetClass k8s:Deployment ; | ||
. | ||
|
||
|
||
flux:ImagetoOciRepositoryLink a sh:PropertyShape, fluxSchema:Link ; | ||
sh:name "hosted by" ; | ||
sh:path oci:repository ; | ||
sh:class oci:Repository ; | ||
sh:targetClass oci:Image ; | ||
. | ||
|
||
|
||
flux:OciRepositoryToRegistryLink a sh:PropertyShape, fluxSchema:Link ; | ||
sh:name "hosted by" ; | ||
sh:path oci:registry ; | ||
sh:class oci:Registry ; | ||
sh:targetClass oci:Repository ; | ||
. |
Oops, something went wrong.