From 6d76c4404a46b8387880b4a389293aed6f97e3e7 Mon Sep 17 00:00:00 2001 From: Matthieu Lamalle Date: Thu, 7 Mar 2024 15:39:20 +0100 Subject: [PATCH] update doc --- Makefile | 2 +- README.md | 36 +++++++++++++++---- doc/tekton.md | 23 ------------ .../base/tekton/pipeline/pipelinerun.yaml | 4 ++- 4 files changed, 34 insertions(+), 31 deletions(-) delete mode 100644 doc/tekton.md diff --git a/Makefile b/Makefile index 5cc1a63..076af3f 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ setup-cluster: kubectl apply -f kind/cluster/coredns/custom-dns.yaml kubectl -n kube-system rollout restart deployment/coredns kubectl -n kube-system rollout status --timeout 5m deployment/coredns - @yq -y -i ".spec.addresses = [\"$(SUBNET)\"]" kind/cluster/lb/resources/ipaddresspoool.yaml + @yq -i ".spec.addresses = [\"$(SUBNET)\"]" kind/cluster/lb/resources/ipaddresspoool.yaml kubectl apply -k kind/cluster/lb --server-side ssh-secret: diff --git a/README.md b/README.md index 97bf2e8..d262c1a 100644 --- a/README.md +++ b/README.md @@ -4,20 +4,44 @@ CI du projet MSE ### Lancement de l'environnement -Lancer l'environnement +#### Lancer l'environnement ``` make create-cluster -skaffold dev +skaffold dev --cleanup=false ``` -Préparer les secrets +#### Préparer les secrets +Editer le fichier `kustomization/base/tekton/secret/secret.yaml` avec les identifiants git + ``` make ssh-secret make docker-secret ``` -Editer le fichier `kustomization/base/tekton/secret/secret.yaml` avec les identifiants git - ### Lancement d'un pipeline -[Documentation](doc/tekton.md) + +``` +kubectl create -f kustomization/base/tekton/pipeline/pipelinerun.yaml +``` + +### Lister et voir les logs des pipelines + +``` +tkn pipelinerun list +tkn pipelinerun logs clone-read-run-dqwcx -f +``` + +Pour installer le cli tekton : [Tekton CLI](https://tekton.dev/docs/cli/#installation) + + +### Accès au Dashboard +[Doc Tekton](https://tekton.dev/docs/dashboard/install/) + +On crée un port-forward pour accéder au dashboard + +``` +kubectl --namespace tekton-pipelines port-forward svc/tekton-dashboard 9097:9097 +``` + +Accéder au dashboard : http://localhost:9097 diff --git a/doc/tekton.md b/doc/tekton.md deleted file mode 100644 index 30789e8..0000000 --- a/doc/tekton.md +++ /dev/null @@ -1,23 +0,0 @@ -### Accès au Dashboard -[Doc Tekton](https://tekton.dev/docs/dashboard/install/) - -On crée un port-forward pour accéder au dashboard - -``` -kubectl --namespace tekton-pipelines port-forward svc/tekton-dashboard 9097:9097 -``` - -Accéder au dashboard : http://localhost:9097 - -### Lancement du pipeline - -``` -kubectl create -f kustomization/base/tekton/pipeline/pipelinerun.yaml -``` - -### Lister et voir les logs des pipelines - -``` -tkn pipelinerun list -tkn pipelinerun logs clone-read-run-dqwcx -f -``` diff --git a/kustomization/base/tekton/pipeline/pipelinerun.yaml b/kustomization/base/tekton/pipeline/pipelinerun.yaml index 9dfffb4..37ebff3 100644 --- a/kustomization/base/tekton/pipeline/pipelinerun.yaml +++ b/kustomization/base/tekton/pipeline/pipelinerun.yaml @@ -29,7 +29,9 @@ spec: - name: repo-url value: https://forge.cadoles.com/CNOUS/mse.git - name: revision - value: k8s + value: issue-2977 + - name: destination + value: sprint-8 - name: image value: reg.cadoles.com/mlamalle/testtekton - name: dockerfile