├── .vscode └── settings.json ├── 000-index.md ├── 010-case-structure.md ├── 100-case.md ├── 110-roles.md ├── 120-prereqs.md ├── 130-certification.md ├── 140-resource-groups.md ├── 200-inventory.md ├── 210-resources.md ├── 220-actions.md ├── 300-signature.md ├── 310-digests.md ├── 400-archive.md ├── 500-repository.md ├── LICENSE ├── README.md ├── design ├── case-overview-olm-sig-20200121.pptx ├── case-resource-retrieval.drawio.png ├── case-signature-flow-diagram.png └── case.png ├── samples ├── case-repo-sample │ ├── etcd-operator-case │ │ ├── 1.0.0 │ │ │ ├── etcd-operator-case-1.0.0.tgz │ │ │ └── version.yaml │ │ └── index.yaml │ └── index.yaml ├── etcd-operator-case-flattened.yaml └── etcd-operator-case │ ├── LICENSE │ ├── README.md │ ├── case.yaml │ ├── certifications │ └── ibmccs.yaml │ ├── digests.yaml │ ├── inventory │ ├── clusterSetup │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── files │ │ │ ├── etcd-resources │ │ │ │ ├── etcd-operator-clusterrole.yaml │ │ │ │ ├── etcd-operator-psp-clusterrole.yaml │ │ │ │ ├── etcd-operator-psp.yaml │ │ │ │ ├── etcd-operator-scc.yaml │ │ │ │ ├── etcdbackups-crd.yaml │ │ │ │ ├── etcdclusters-crd.yaml │ │ │ │ └── etcdrestores-crd.yaml │ │ │ └── install.sh │ │ ├── inventory.yaml │ │ └── resources.yaml │ ├── etcdBackupExample │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── files │ │ │ └── etcdBackupExample.yaml │ │ ├── inventory.yaml │ │ └── resources.yaml │ ├── etcdClusterExample │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── files │ │ │ └── etcdClusterExample.yaml │ │ ├── inventory.yaml │ │ └── resources.yaml │ ├── etcdOLMOperators │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── files │ │ │ ├── catalogsource.yaml │ │ │ └── etcd-cluster-subscription.yaml │ │ ├── inventory.yaml │ │ └── resources.yaml │ ├── etcdOperators │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── inventory.yaml │ │ └── resources.yaml │ ├── etcdRestoreExample │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── files │ │ │ └── etcdRestoreExample.yaml │ │ ├── inventory.yaml │ │ └── resources.yaml │ ├── loadAirgapResources │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── files │ │ │ └── parse_csv.sh │ │ ├── inventory.yaml │ │ └── resources.yaml │ ├── namespaceSetup │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── files │ │ │ ├── namespace.yaml │ │ │ ├── rolebinding.yaml │ │ │ ├── scc.sh │ │ │ └── service-account.yaml │ │ ├── inventory.yaml │ │ └── resources.yaml │ └── productInstall │ │ ├── README.md │ │ ├── actions.yaml │ │ ├── files │ │ └── install.sh │ │ ├── inventory.yaml │ │ └── resources.yaml │ ├── licenses │ └── LICENSE │ ├── prereqs.yaml │ └── roles.yaml ├── schema ├── actions.json ├── case.json ├── certification.json ├── digests.json ├── inventory.json ├── logical-grammar.json ├── metadata.json ├── prereqs.json ├── repo-index.json ├── repo-product-index.json ├── repo-product-version.json ├── resource-groups.json ├── resources.json ├── roles.json ├── signature.json └── version.json └── utilities ├── createArchive.sh └── processFiles.sh /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /000-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/000-index.md -------------------------------------------------------------------------------- /010-case-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/010-case-structure.md -------------------------------------------------------------------------------- /100-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/100-case.md -------------------------------------------------------------------------------- /110-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/110-roles.md -------------------------------------------------------------------------------- /120-prereqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/120-prereqs.md -------------------------------------------------------------------------------- /130-certification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/130-certification.md -------------------------------------------------------------------------------- /140-resource-groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/140-resource-groups.md -------------------------------------------------------------------------------- /200-inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/200-inventory.md -------------------------------------------------------------------------------- /210-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/210-resources.md -------------------------------------------------------------------------------- /220-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/220-actions.md -------------------------------------------------------------------------------- /300-signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/300-signature.md -------------------------------------------------------------------------------- /310-digests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/310-digests.md -------------------------------------------------------------------------------- /400-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/400-archive.md -------------------------------------------------------------------------------- /500-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/500-repository.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/README.md -------------------------------------------------------------------------------- /design/case-overview-olm-sig-20200121.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/design/case-overview-olm-sig-20200121.pptx -------------------------------------------------------------------------------- /design/case-resource-retrieval.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/design/case-resource-retrieval.drawio.png -------------------------------------------------------------------------------- /design/case-signature-flow-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/design/case-signature-flow-diagram.png -------------------------------------------------------------------------------- /design/case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/design/case.png -------------------------------------------------------------------------------- /samples/case-repo-sample/etcd-operator-case/1.0.0/etcd-operator-case-1.0.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/case-repo-sample/etcd-operator-case/1.0.0/etcd-operator-case-1.0.0.tgz -------------------------------------------------------------------------------- /samples/case-repo-sample/etcd-operator-case/1.0.0/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/case-repo-sample/etcd-operator-case/1.0.0/version.yaml -------------------------------------------------------------------------------- /samples/case-repo-sample/etcd-operator-case/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/case-repo-sample/etcd-operator-case/index.yaml -------------------------------------------------------------------------------- /samples/case-repo-sample/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/case-repo-sample/index.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case-flattened.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case-flattened.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/LICENSE -------------------------------------------------------------------------------- /samples/etcd-operator-case/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/case.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/certifications/ibmccs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/certifications/ibmccs.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/digests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/digests.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcd-operator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcd-operator-clusterrole.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcd-operator-psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcd-operator-psp-clusterrole.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcd-operator-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcd-operator-psp.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcd-operator-scc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcd-operator-scc.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcdbackups-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcdbackups-crd.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcdclusters-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcdclusters-crd.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcdrestores-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/files/etcd-resources/etcdrestores-crd.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/files/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/files/install.sh -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/clusterSetup/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/clusterSetup/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdBackupExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdBackupExample/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdBackupExample/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdBackupExample/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdBackupExample/files/etcdBackupExample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdBackupExample/files/etcdBackupExample.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdBackupExample/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdBackupExample/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdBackupExample/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdBackupExample/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdClusterExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdClusterExample/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdClusterExample/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdClusterExample/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdClusterExample/files/etcdClusterExample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdClusterExample/files/etcdClusterExample.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdClusterExample/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdClusterExample/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdClusterExample/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdClusterExample/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOLMOperators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOLMOperators/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOLMOperators/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOLMOperators/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOLMOperators/files/catalogsource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOLMOperators/files/catalogsource.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOLMOperators/files/etcd-cluster-subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOLMOperators/files/etcd-cluster-subscription.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOLMOperators/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOLMOperators/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOLMOperators/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOLMOperators/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOperators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOperators/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOperators/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOperators/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOperators/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOperators/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdOperators/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdOperators/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdRestoreExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdRestoreExample/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdRestoreExample/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdRestoreExample/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdRestoreExample/files/etcdRestoreExample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdRestoreExample/files/etcdRestoreExample.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdRestoreExample/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdRestoreExample/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/etcdRestoreExample/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/etcdRestoreExample/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/loadAirgapResources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/loadAirgapResources/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/loadAirgapResources/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/loadAirgapResources/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/loadAirgapResources/files/parse_csv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/loadAirgapResources/files/parse_csv.sh -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/loadAirgapResources/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/loadAirgapResources/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/loadAirgapResources/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/loadAirgapResources/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/namespaceSetup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/namespaceSetup/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/namespaceSetup/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/namespaceSetup/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/namespaceSetup/files/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/namespaceSetup/files/namespace.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/namespaceSetup/files/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/namespaceSetup/files/rolebinding.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/namespaceSetup/files/scc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/namespaceSetup/files/scc.sh -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/namespaceSetup/files/service-account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/namespaceSetup/files/service-account.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/namespaceSetup/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/namespaceSetup/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/namespaceSetup/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/namespaceSetup/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/productInstall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/productInstall/README.md -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/productInstall/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/productInstall/actions.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/productInstall/files/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/productInstall/files/install.sh -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/productInstall/inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/productInstall/inventory.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/inventory/productInstall/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/inventory/productInstall/resources.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/licenses/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/licenses/LICENSE -------------------------------------------------------------------------------- /samples/etcd-operator-case/prereqs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/prereqs.yaml -------------------------------------------------------------------------------- /samples/etcd-operator-case/roles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/samples/etcd-operator-case/roles.yaml -------------------------------------------------------------------------------- /schema/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/actions.json -------------------------------------------------------------------------------- /schema/case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/case.json -------------------------------------------------------------------------------- /schema/certification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/certification.json -------------------------------------------------------------------------------- /schema/digests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/digests.json -------------------------------------------------------------------------------- /schema/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/inventory.json -------------------------------------------------------------------------------- /schema/logical-grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/logical-grammar.json -------------------------------------------------------------------------------- /schema/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/metadata.json -------------------------------------------------------------------------------- /schema/prereqs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/prereqs.json -------------------------------------------------------------------------------- /schema/repo-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/repo-index.json -------------------------------------------------------------------------------- /schema/repo-product-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/repo-product-index.json -------------------------------------------------------------------------------- /schema/repo-product-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/repo-product-version.json -------------------------------------------------------------------------------- /schema/resource-groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/resource-groups.json -------------------------------------------------------------------------------- /schema/resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/resources.json -------------------------------------------------------------------------------- /schema/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/roles.json -------------------------------------------------------------------------------- /schema/signature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/signature.json -------------------------------------------------------------------------------- /schema/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/schema/version.json -------------------------------------------------------------------------------- /utilities/createArchive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/utilities/createArchive.sh -------------------------------------------------------------------------------- /utilities/processFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/case/HEAD/utilities/processFiles.sh --------------------------------------------------------------------------------