Merge "feat(cleanup) fix(order) fix(config)"
This commit is contained in:
commit
b0b449df1a
@ -93,7 +93,7 @@ spec:
|
|||||||
--netrc-file /run/jarvis/harbor-netrc/harbor-netrc \
|
--netrc-file /run/jarvis/harbor-netrc/harbor-netrc \
|
||||||
-H "accept: application/json" \
|
-H "accept: application/json" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "{ \"project_name\": \"${PROJECT_NAME}\", \"public\": false, \"metadata\": { \"auto_scan\": \"true\" }}"` ;;
|
-d "{ \"project_name\": \"${PROJECT_NAME}\", \"public\": true, \"metadata\": { \"auto_scan\": \"true\" }}"` ;;
|
||||||
*) echo "Unable to retrieve projects in harbor: ${PROJECT_CHECK_RESP} response code."; exit 1
|
*) echo "Unable to retrieve projects in harbor: ${PROJECT_CHECK_RESP} response code."; exit 1
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
@ -92,5 +92,6 @@ data:
|
|||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
|
"environment_name": "development",
|
||||||
"remove_artifacts": "true"
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -92,5 +92,6 @@ data:
|
|||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"environment_name": "development",
|
||||||
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,7 @@ data:
|
|||||||
"version": "3.3.3",
|
"version": "3.3.3",
|
||||||
"build_from_source": false,
|
"build_from_source": false,
|
||||||
"path": "",
|
"path": "",
|
||||||
|
"remote_namespace": "mongodb",
|
||||||
"build": {
|
"build": {
|
||||||
"name": "https://charts.bitnami.com/bitnami",
|
"name": "https://charts.bitnami.com/bitnami",
|
||||||
"local_repo": "bitnami_mongodb",
|
"local_repo": "bitnami_mongodb",
|
||||||
@ -84,5 +85,6 @@ data:
|
|||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"environment_name": "development",
|
||||||
|
"remove_artifacts": "false"
|
||||||
}
|
}
|
||||||
|
@ -92,5 +92,6 @@ data:
|
|||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"environment_name": "development",
|
||||||
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -92,5 +92,6 @@ data:
|
|||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"environment_name": "development",
|
||||||
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -92,5 +92,6 @@ data:
|
|||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"environment_name": "development",
|
||||||
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -92,5 +92,6 @@ data:
|
|||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"environment_name": "development",
|
||||||
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -91,5 +91,6 @@ data:
|
|||||||
}
|
}
|
||||||
cleanup.json: |
|
cleanup.json: |
|
||||||
{
|
{
|
||||||
"remove_artifacts": "true"
|
"environment_name": "development",
|
||||||
|
"remove_artifacts": "true"
|
||||||
}
|
}
|
||||||
|
@ -80,7 +80,7 @@ EOF
|
|||||||
git review
|
git review
|
||||||
change_id=$(git log -1 | grep Change-Id: | awk '{print $2}')
|
change_id=$(git log -1 | grep Change-Id: | awk '{print $2}')
|
||||||
popd
|
popd
|
||||||
sleep 180
|
sleep 60
|
||||||
if (( COUNTER == 0 ));
|
if (( COUNTER == 0 ));
|
||||||
then
|
then
|
||||||
CHANGE_ID_COUNTER=$change_id
|
CHANGE_ID_COUNTER=$change_id
|
||||||
|
@ -95,7 +95,11 @@ spec:
|
|||||||
taskRef:
|
taskRef:
|
||||||
name: deployment-manifests
|
name: deployment-manifests
|
||||||
|
|
||||||
- name: microflow-functional
|
- name: microflow-promote-artifacts
|
||||||
|
when:
|
||||||
|
- input: $(params.pipeline)
|
||||||
|
operator: in
|
||||||
|
values: ["merge"]
|
||||||
runAfter:
|
runAfter:
|
||||||
- microflow-deployment-manifests
|
- microflow-deployment-manifests
|
||||||
- microflow-k8s
|
- microflow-k8s
|
||||||
@ -107,24 +111,22 @@ spec:
|
|||||||
- name: development_pipeline_data
|
- name: development_pipeline_data
|
||||||
workspace: development_pipeline_data
|
workspace: development_pipeline_data
|
||||||
taskRef:
|
taskRef:
|
||||||
name: functional
|
name: promote
|
||||||
|
|
||||||
- name: microflow-promote-artifacts
|
- name: microflow-functional
|
||||||
when:
|
|
||||||
- input: $(params.pipeline)
|
|
||||||
operator: in
|
|
||||||
values: ["merge"]
|
|
||||||
runAfter:
|
runAfter:
|
||||||
- microflow-functional
|
- microflow-promote-artifacts
|
||||||
workspaces:
|
workspaces:
|
||||||
- name: k8s_cluster_data
|
- name: k8s_cluster_data
|
||||||
workspace: k8s_cluster_data
|
workspace: k8s_cluster_data
|
||||||
- name: development_pipeline_data
|
- name: development_pipeline_data
|
||||||
workspace: development_pipeline_data
|
workspace: development_pipeline_data
|
||||||
taskRef:
|
taskRef:
|
||||||
name: promote
|
name: functional
|
||||||
finally:
|
|
||||||
- name: microflow-cleanup
|
- name: microflow-cleanup
|
||||||
|
runAfter:
|
||||||
|
- microflow-functional
|
||||||
|
- microflow-promote-artifacts
|
||||||
workspaces:
|
workspaces:
|
||||||
- name: k8s_cluster_data
|
- name: k8s_cluster_data
|
||||||
workspace: k8s_cluster_data
|
workspace: k8s_cluster_data
|
||||||
|
@ -6,4 +6,5 @@ ansible-playbook -vvv "/playbooks/cleanup.yaml" -i hosts \
|
|||||||
-e @"/workspace/development_pipeline_data/default.json" \
|
-e @"/workspace/development_pipeline_data/default.json" \
|
||||||
-e 'loop_chart_source="/workspace/development_pipeline_data/chart.json"' \
|
-e 'loop_chart_source="/workspace/development_pipeline_data/chart.json"' \
|
||||||
-e 'loop_image_source="/workspace/development_pipeline_data/image.json"' \
|
-e 'loop_image_source="/workspace/development_pipeline_data/image.json"' \
|
||||||
|
-e @"/workspace/development_pipeline_data/cleanup.json" \
|
||||||
-e @"/workspace/development_pipeline_data/cluster.json"
|
-e @"/workspace/development_pipeline_data/cluster.json"
|
@ -2,17 +2,23 @@
|
|||||||
- set_fact:
|
- set_fact:
|
||||||
_async: "{{ chart_async | default(600) }}"
|
_async: "{{ chart_async | default(600) }}"
|
||||||
_delay: "{{ chart_check_status_delay | default(5) }}"
|
_delay: "{{ chart_check_status_delay | default(5) }}"
|
||||||
|
remove_artifacts: "{{ remove_artifacts }}"
|
||||||
|
environment_name: "{{ environment_name }}"
|
||||||
|
|
||||||
- name: Remove test release
|
- name: Cleanup Task
|
||||||
shell: helm delete --kubeconfig="{{ cluster_kubeconfig_path }}/kubeconfig" "{{ chart.release_name }}" -n "{{ chart.namespace }}"
|
when: remove_artifacts == "true" and environment_name == "development"
|
||||||
loop: "{{ charts }}"
|
block:
|
||||||
loop_control:
|
- name: Delete Helm Release
|
||||||
loop_var: "chart"
|
shell: helm delete --kubeconfig="{{ cluster_kubeconfig_path }}/kubeconfig" "{{ chart.release_name }}" -n "{{ chart.remote_namespace }}"
|
||||||
async: "{{ _async }}"
|
loop: "{{ charts }}"
|
||||||
poll: 0
|
loop_control:
|
||||||
register: cleanup_async_results
|
loop_var: "chart"
|
||||||
|
async: "{{ _async }}"
|
||||||
|
poll: 0
|
||||||
|
register: cleanup_async_results
|
||||||
|
|
||||||
- name: Wait for helm delete results
|
- name: Wait for helm delete results
|
||||||
vars:
|
vars:
|
||||||
async_results: "{{ cleanup_async_results }}"
|
async_results: "{{ cleanup_async_results }}"
|
||||||
include_tasks: ./roles/common/tasks/check_sync_status.yaml
|
include_tasks: ./roles/common/tasks/check_sync_status.yaml
|
||||||
|
become: true
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
_delay: "{{ chart_check_status_delay | default(5) }}"
|
_delay: "{{ chart_check_status_delay | default(5) }}"
|
||||||
|
|
||||||
- name: Functional Deploy
|
- name: Functional Deploy
|
||||||
when: ("{{ stage }}" == "deploy")
|
when: stage == "deploy"
|
||||||
block:
|
block:
|
||||||
#Deploy CNF
|
#Deploy CNF
|
||||||
- name: Deploy charts
|
- name: Deploy charts
|
||||||
@ -30,10 +30,10 @@
|
|||||||
cat {{ datapath }}/{{ chart.chart_name }}-overrides.json ;
|
cat {{ datapath }}/{{ chart.chart_name }}-overrides.json ;
|
||||||
helm upgrade --install \
|
helm upgrade --install \
|
||||||
--kubeconfig="{{ cluster_kubeconfig_path }}/kubeconfig" \
|
--kubeconfig="{{ cluster_kubeconfig_path }}/kubeconfig" \
|
||||||
"{{ chart.release_name }}" "{{ chart.project }}-staging/{{ chart.chart_name }}" \
|
"{{ chart.release_name }}" "{{ chart.project }}/{{ chart.chart_name }}" \
|
||||||
--version="{{ chart.version }}" \
|
--version="{{ chart.version }}" \
|
||||||
--values="{{ datapath }}/{{ chart.chart_name }}-overrides.json" \
|
--values="{{ datapath }}/{{ chart.chart_name }}-overrides.json" \
|
||||||
--namespace="{{ chart.namespace }}"
|
--namespace="{{ chart.remote_namespace }}"
|
||||||
args:
|
args:
|
||||||
executable: /bin/bash
|
executable: /bin/bash
|
||||||
loop: "{{ charts }}"
|
loop: "{{ charts }}"
|
||||||
@ -50,7 +50,7 @@
|
|||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: Functional Test
|
- name: Functional Test
|
||||||
when: ( stage == "test")
|
when: stage == "test"
|
||||||
block:
|
block:
|
||||||
#Test Deployed CNF
|
#Test Deployed CNF
|
||||||
- name: Chart currently has no Helm Tests, echo for now
|
- name: Chart currently has no Helm Tests, echo for now
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
cp "$(workspaces.k8s_cluster_data.path)/default.json" "$(workspaces.development_pipeline_data.path)/default.json"
|
|
||||||
cp "$(workspaces.k8s_cluster_data.path)/cluster.json" "$(workspaces.development_pipeline_data.path)/cluster.json"
|
|
||||||
jq '.cluster_kubeconfig_path="$(workspaces.development_pipeline_data.path)/config"' "$(workspaces.development_pipeline_data.path)/cluster.json" > "$(workspaces.development_pipeline_data.path)/temp_cluster.json" && mv "$(workspaces.development_pipeline_data.path)/temp_cluster.json" "$(workspaces.development_pipeline_data.path)/cluster.json"
|
|
@ -1,9 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Secret
|
|
||||||
metadata:
|
|
||||||
name: harbor-helm-creds
|
|
||||||
namespace: development-pipeline
|
|
||||||
type: kubernetes.io/basic-auth
|
|
||||||
stringData:
|
|
||||||
username: admin
|
|
||||||
password: Harbor12345
|
|
Loading…
x
Reference in New Issue
Block a user