├── .gitignore ├── LICENSE ├── README.md ├── documentation ├── Development.md ├── Flip_Book_-_Automation_for_IBM_Watson_Deployments.pdf ├── NLPHelmChart.md ├── Usage.md └── screenshots │ ├── argocd-01-small.jpg │ ├── argocd-01.png │ ├── argocd-02.png │ ├── argocd-03-small.jpg │ ├── argocd-03.png │ ├── argocd-04.png │ ├── argocd-05.png │ ├── argocd-06.png │ ├── argocd-07.png │ ├── argocd-08.png │ ├── argocd-09.png │ ├── argocd-10.png │ ├── bom-01.png │ ├── bom-02.png │ ├── bom-03.png │ ├── bom-04.png │ ├── bom-05.png │ ├── bom-06.png │ ├── bom-07.png │ ├── flipbook.png │ ├── gitops-repo-01.png │ ├── gitops-repo-02.png │ ├── gitops-repo-03.png │ ├── gitops-repo-04.png │ ├── gitops-repo-05.png │ ├── gitops-repo-06.png │ ├── gitops-repo-07.png │ ├── gitops-repo-08.png │ ├── gitops-repo-09.png │ ├── iascable-01.png │ ├── iascable-02.png │ ├── iascable-03.png │ ├── iascable-04.png │ ├── iascable-05.png │ ├── modules-01.png │ ├── modules-02.png │ ├── openshift-01.png │ ├── openshift-02.png │ ├── openshift-03.png │ ├── openshift-04.png │ ├── openshift-05.png │ ├── openshift-06.png │ ├── openshift-07.png │ ├── openshift-08.png │ ├── openshift-09.png │ ├── openshift-10.png │ ├── openshift-11.png │ ├── openshift-12.png │ ├── openshift-13.png │ ├── openshift-14.png │ ├── openshift-15.png │ ├── techzone-asset-1.png │ ├── techzone-asset-2.png │ ├── techzone-asset-3.png │ ├── techzone-asset-4.png │ ├── validation-01.png │ ├── validation-02.png │ ├── validation-03.png │ ├── validation-04.png │ ├── validation-05-small.jpg │ ├── validation-05.png │ └── video.png ├── helm-nlp └── values.yaml ├── roks-existing-nlp ├── bom.yaml └── output │ ├── cluster-with-watson-nlp │ └── variables-template.yaml │ └── credentials-template.properties └── roks-new-nlp ├── bom.yaml └── output ├── cluster-with-watson-nlp └── variables-template.yaml └── credentials-template.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/README.md -------------------------------------------------------------------------------- /documentation/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/Development.md -------------------------------------------------------------------------------- /documentation/Flip_Book_-_Automation_for_IBM_Watson_Deployments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/Flip_Book_-_Automation_for_IBM_Watson_Deployments.pdf -------------------------------------------------------------------------------- /documentation/NLPHelmChart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/NLPHelmChart.md -------------------------------------------------------------------------------- /documentation/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/Usage.md -------------------------------------------------------------------------------- /documentation/screenshots/argocd-01-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-01-small.jpg -------------------------------------------------------------------------------- /documentation/screenshots/argocd-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-01.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-02.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-03-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-03-small.jpg -------------------------------------------------------------------------------- /documentation/screenshots/argocd-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-03.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-04.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-05.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-06.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-07.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-08.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-09.png -------------------------------------------------------------------------------- /documentation/screenshots/argocd-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/argocd-10.png -------------------------------------------------------------------------------- /documentation/screenshots/bom-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/bom-01.png -------------------------------------------------------------------------------- /documentation/screenshots/bom-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/bom-02.png -------------------------------------------------------------------------------- /documentation/screenshots/bom-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/bom-03.png -------------------------------------------------------------------------------- /documentation/screenshots/bom-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/bom-04.png -------------------------------------------------------------------------------- /documentation/screenshots/bom-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/bom-05.png -------------------------------------------------------------------------------- /documentation/screenshots/bom-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/bom-06.png -------------------------------------------------------------------------------- /documentation/screenshots/bom-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/bom-07.png -------------------------------------------------------------------------------- /documentation/screenshots/flipbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/flipbook.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-01.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-02.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-03.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-04.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-05.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-06.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-07.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-08.png -------------------------------------------------------------------------------- /documentation/screenshots/gitops-repo-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/gitops-repo-09.png -------------------------------------------------------------------------------- /documentation/screenshots/iascable-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/iascable-01.png -------------------------------------------------------------------------------- /documentation/screenshots/iascable-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/iascable-02.png -------------------------------------------------------------------------------- /documentation/screenshots/iascable-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/iascable-03.png -------------------------------------------------------------------------------- /documentation/screenshots/iascable-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/iascable-04.png -------------------------------------------------------------------------------- /documentation/screenshots/iascable-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/iascable-05.png -------------------------------------------------------------------------------- /documentation/screenshots/modules-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/modules-01.png -------------------------------------------------------------------------------- /documentation/screenshots/modules-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/modules-02.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-01.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-02.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-03.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-04.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-05.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-06.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-07.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-08.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-09.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-10.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-11.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-12.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-13.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-14.png -------------------------------------------------------------------------------- /documentation/screenshots/openshift-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/openshift-15.png -------------------------------------------------------------------------------- /documentation/screenshots/techzone-asset-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/techzone-asset-1.png -------------------------------------------------------------------------------- /documentation/screenshots/techzone-asset-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/techzone-asset-2.png -------------------------------------------------------------------------------- /documentation/screenshots/techzone-asset-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/techzone-asset-3.png -------------------------------------------------------------------------------- /documentation/screenshots/techzone-asset-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/techzone-asset-4.png -------------------------------------------------------------------------------- /documentation/screenshots/validation-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/validation-01.png -------------------------------------------------------------------------------- /documentation/screenshots/validation-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/validation-02.png -------------------------------------------------------------------------------- /documentation/screenshots/validation-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/validation-03.png -------------------------------------------------------------------------------- /documentation/screenshots/validation-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/validation-04.png -------------------------------------------------------------------------------- /documentation/screenshots/validation-05-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/validation-05-small.jpg -------------------------------------------------------------------------------- /documentation/screenshots/validation-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/validation-05.png -------------------------------------------------------------------------------- /documentation/screenshots/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/documentation/screenshots/video.png -------------------------------------------------------------------------------- /helm-nlp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/helm-nlp/values.yaml -------------------------------------------------------------------------------- /roks-existing-nlp/bom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/roks-existing-nlp/bom.yaml -------------------------------------------------------------------------------- /roks-existing-nlp/output/cluster-with-watson-nlp/variables-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/roks-existing-nlp/output/cluster-with-watson-nlp/variables-template.yaml -------------------------------------------------------------------------------- /roks-existing-nlp/output/credentials-template.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/roks-existing-nlp/output/credentials-template.properties -------------------------------------------------------------------------------- /roks-new-nlp/bom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/roks-new-nlp/bom.yaml -------------------------------------------------------------------------------- /roks-new-nlp/output/cluster-with-watson-nlp/variables-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/roks-new-nlp/output/cluster-with-watson-nlp/variables-template.yaml -------------------------------------------------------------------------------- /roks-new-nlp/output/credentials-template.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-automation/HEAD/roks-new-nlp/output/credentials-template.properties --------------------------------------------------------------------------------