Merge pull request #593 from bogdando/label_apps
Label k8s apps, adjust collect info commandspull/360/head
commit
88577b9889
11
.travis.yml
11
.travis.yml
|
@ -103,11 +103,11 @@ env:
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
# Install Ansible.
|
# Install Ansible.
|
||||||
- pip install --user boto -U
|
|
||||||
- pip install --user ansible
|
- pip install --user ansible
|
||||||
- pip install --user netaddr
|
- pip install --user netaddr
|
||||||
# W/A https://github.com/ansible/ansible-modules-core/issues/5196#issuecomment-253766186
|
# W/A https://github.com/ansible/ansible-modules-core/issues/5196#issuecomment-253766186
|
||||||
- pip install --user apache-libcloud==0.20.1
|
- pip install --user apache-libcloud==0.20.1
|
||||||
|
- pip install --user boto==2.9.0 -U
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
- directories:
|
- directories:
|
||||||
|
@ -149,16 +149,19 @@ script:
|
||||||
- $HOME/.local/bin/ansible-playbook -i inventory/inventory.ini -u $SSH_USER -e ansible_ssh_user=$SSH_USER $SSH_ARGS -b --become-user=root tests/testcases/030_check-network.yml $LOG_LEVEL
|
- $HOME/.local/bin/ansible-playbook -i inventory/inventory.ini -u $SSH_USER -e ansible_ssh_user=$SSH_USER $SSH_ARGS -b --become-user=root tests/testcases/030_check-network.yml $LOG_LEVEL
|
||||||
|
|
||||||
after_failure:
|
after_failure:
|
||||||
- $HOME/.local/bin/ansible-playbook -i inventory/inventory.ini -u $SSH_USER -e ansible_ssh_user=$SSH_USER $SSH_ARGS -b --become-user=root scripts/collect-info.yaml
|
- >
|
||||||
|
$HOME/.local/bin/ansible-playbook -i inventory/inventory.ini -u $SSH_USER
|
||||||
|
-e ansible_ssh_user=$SSH_USER $SSH_ARGS -b --become-user=root -e dir=$HOME
|
||||||
|
scripts/collect-info.yaml
|
||||||
- >
|
- >
|
||||||
$HOME/.local/bin/ansible-playbook tests/cloud_playbooks/upload-logs-gcs.yml -i "localhost," -c local
|
$HOME/.local/bin/ansible-playbook tests/cloud_playbooks/upload-logs-gcs.yml -i "localhost," -c local
|
||||||
-e test_id=${TEST_ID}
|
|
||||||
-e kube_network_plugin=${KUBE_NETWORK_PLUGIN}
|
-e kube_network_plugin=${KUBE_NETWORK_PLUGIN}
|
||||||
|
-e gce_project_id=${GCE_PROJECT_ID}
|
||||||
-e gs_key=${GS_ACCESS_KEY_ID}
|
-e gs_key=${GS_ACCESS_KEY_ID}
|
||||||
-e gs_skey=${GS_SECRET_ACCESS_KEY}
|
-e gs_skey=${GS_SECRET_ACCESS_KEY}
|
||||||
-e ostype=${CLOUD_IMAGE}
|
-e ostype=${CLOUD_IMAGE}
|
||||||
-e commit=${TRAVIS_COMMIT}
|
-e commit=${TRAVIS_COMMIT}
|
||||||
-e pr=${TRAVIS_PULL_REQUEST}
|
-e dir=${HOME}
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
- >
|
- >
|
||||||
|
|
|
@ -3,6 +3,8 @@ kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: kube-apiserver
|
name: kube-apiserver
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
|
labels:
|
||||||
|
k8s-app: kube-apiserver
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
containers:
|
containers:
|
||||||
|
|
|
@ -3,6 +3,8 @@ kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: kube-controller-manager
|
name: kube-controller-manager
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
|
labels:
|
||||||
|
k8s-app: kube-controller
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
containers:
|
containers:
|
||||||
|
|
|
@ -3,6 +3,8 @@ kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: kube-scheduler
|
name: kube-scheduler
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
|
labels:
|
||||||
|
k8s-app: kube-scheduler
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
containers:
|
containers:
|
||||||
|
|
|
@ -3,6 +3,8 @@ kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: kube-proxy
|
name: kube-proxy
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
|
labels:
|
||||||
|
k8s-app: kube-proxy
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
containers:
|
containers:
|
||||||
|
|
|
@ -3,6 +3,8 @@ kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: nginx-proxy
|
name: nginx-proxy
|
||||||
namespace: kube-system
|
namespace: kube-system
|
||||||
|
labels:
|
||||||
|
k8s-app: kube-nginx
|
||||||
spec:
|
spec:
|
||||||
hostNetwork: true
|
hostNetwork: true
|
||||||
containers:
|
containers:
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
---
|
---
|
||||||
- hosts: all
|
- hosts: all
|
||||||
become: true
|
become: false
|
||||||
gather_facts: no
|
gather_facts: no
|
||||||
|
|
||||||
vars:
|
vars:
|
||||||
debug: false
|
|
||||||
commands:
|
commands:
|
||||||
- name: timedate_info
|
- name: timedate_info
|
||||||
cmd: timedatectl status
|
cmd: timedatectl status
|
||||||
|
@ -26,6 +25,37 @@
|
||||||
cmd: journalctl -p err --utc --no-pager
|
cmd: journalctl -p err --utc --no-pager
|
||||||
- name: etcd_info
|
- name: etcd_info
|
||||||
cmd: etcdctl --debug cluster-health
|
cmd: etcdctl --debug cluster-health
|
||||||
|
- name: weave_info
|
||||||
|
cmd: weave report | jq "."
|
||||||
|
- name: weave_logs
|
||||||
|
cmd: docker logs weave > weave.log
|
||||||
|
- name: kubedns_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l k8s-app=kubedns -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system kubedns > kubedns.log; done"
|
||||||
|
- name: apiserver_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l k8s-app=kube-apiserver -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system > kube-apiserver.log; done"
|
||||||
|
- name: controller_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l k8s-app=kube-controller -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system > kube-controller.log; done"
|
||||||
|
- name: scheduler_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l k8s-app=kube-scheduler -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system > kube-scheduler.log; done"
|
||||||
|
- name: proxy_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l k8s-app=kube-proxy -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system > kube-proxy.log; done"
|
||||||
|
- name: nginx_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l k8s-app=kube-nginx -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system > kube-nginx.log; done"
|
||||||
|
- name: flannel_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l app=flannel -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system flannel-container > flannel.log; done"
|
||||||
|
- name: canal_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l k8s-app=canal-node -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system flannel > flannel.log; done"
|
||||||
|
- name: calico_policy_logs
|
||||||
|
cmd: sh -c "for i in `kubectl get pods --all-namespaces -l k8s-app=calico-policy -o name`;
|
||||||
|
do kubectl logs $i --namespace kube-system calico-policy-controller > calico-policy-controller.log; done"
|
||||||
|
|
||||||
logs:
|
logs:
|
||||||
- /var/log/syslog
|
- /var/log/syslog
|
||||||
|
@ -38,6 +68,15 @@
|
||||||
- /var/log/calico/bird6/current
|
- /var/log/calico/bird6/current
|
||||||
- /var/log/calico/felix/current
|
- /var/log/calico/felix/current
|
||||||
- /var/log/calico/confd/current
|
- /var/log/calico/confd/current
|
||||||
|
- weave.log
|
||||||
|
- kubedns.log
|
||||||
|
- kube-apiserver.log
|
||||||
|
- kube-controller.log
|
||||||
|
- kube-scheduler.log
|
||||||
|
- kube-proxy.log
|
||||||
|
- kube-nginx.log
|
||||||
|
- flannel.log
|
||||||
|
- calico-policy-controller.log
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: Storing commands output
|
- name: Storing commands output
|
||||||
|
@ -47,10 +86,6 @@
|
||||||
with_items: "{{commands}}"
|
with_items: "{{commands}}"
|
||||||
no_log: True
|
no_log: True
|
||||||
|
|
||||||
- debug: var=item
|
|
||||||
with_items: "{{output.results}}"
|
|
||||||
when: debug
|
|
||||||
|
|
||||||
- name: Fetch results
|
- name: Fetch results
|
||||||
fetch: src={{ item.name }} dest=/tmp/collect-info/commands
|
fetch: src={{ item.name }} dest=/tmp/collect-info/commands
|
||||||
with_items: "{{commands}}"
|
with_items: "{{commands}}"
|
||||||
|
@ -60,7 +95,7 @@
|
||||||
with_items: "{{logs}}"
|
with_items: "{{logs}}"
|
||||||
|
|
||||||
- name: Pack results and logs
|
- name: Pack results and logs
|
||||||
local_action: shell GZIP=-9 tar --remove-files -cvzf logs.tar.gz -C /tmp collect-info
|
local_action: shell GZIP=-9 tar --remove-files -cvzf {{dir|default(".")}}/logs.tar.gz -C /tmp collect-info
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Clean up collected command outputs
|
- name: Clean up collected command outputs
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
[Credentials]
|
||||||
|
gs_access_key_id = {{ gs_key }}
|
||||||
|
gs_secret_access_key = {{ gs_skey }}
|
||||||
|
[Boto]
|
||||||
|
https_validate_certificates = True
|
||||||
|
[GoogleCompute]
|
||||||
|
[GSUtil]
|
||||||
|
default_project_id = {{ gce_project_id }}
|
||||||
|
content_language = en
|
||||||
|
default_api_version = 2
|
||||||
|
[OAuth2]
|
|
@ -3,7 +3,7 @@
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"action": {"type": "Delete"},
|
"action": {"type": "Delete"},
|
||||||
"condition": {"age": 2}
|
"condition": {"age": {{expire_days}}}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -3,65 +3,73 @@
|
||||||
become: false
|
become: false
|
||||||
gather_facts: no
|
gather_facts: no
|
||||||
|
|
||||||
|
vars:
|
||||||
|
expire_days: 2
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
- name: Generate uniq bucket name prefix
|
- name: Generate uniq bucket name prefix
|
||||||
shell: date +%s | sha256sum | base64 | head -c 32
|
shell: date +%Y%m%d
|
||||||
register: out
|
register: out
|
||||||
|
|
||||||
- name: replace_test_id
|
- name: replace_test_id
|
||||||
set_fact:
|
set_fact:
|
||||||
test_name: "kargo-{{ commit }}-{{ pr }}-{{ out.stdout|lower }}-{{ test_id | regex_replace('\\.', '-') }}"
|
test_name: "kargo-ci-{{ out.stdout }}"
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
file_name: "{{ostype}}-{{kube_network_plugin}}-{{commit}}-logs.tar.gz"
|
||||||
|
|
||||||
- name: Create a bucket
|
- name: Create a bucket
|
||||||
gc_storage:
|
gc_storage:
|
||||||
bucket: "{{ test_name }}"
|
bucket: "{{ test_name }}"
|
||||||
mode: create
|
mode: create
|
||||||
permission: private
|
permission: public-read
|
||||||
gs_access_key: "{{ gs_key }}"
|
gs_access_key: "{{ gs_key }}"
|
||||||
gs_secret_key: "{{ gs_skey }}"
|
gs_secret_key: "{{ gs_skey }}"
|
||||||
no_log: True
|
no_log: True
|
||||||
|
|
||||||
|
- name: Create a lifecycle template for the bucket
|
||||||
|
template:
|
||||||
|
src: gcs_life.json.j2
|
||||||
|
dest: "{{dir}}/gcs_life.json"
|
||||||
|
|
||||||
|
- name: Create a boto config to access GCS
|
||||||
|
template:
|
||||||
|
src: boto.j2
|
||||||
|
dest: "{{dir}}/.boto"
|
||||||
|
no_log: True
|
||||||
|
|
||||||
- name: Download gsutil cp installer
|
- name: Download gsutil cp installer
|
||||||
get_url:
|
get_url:
|
||||||
url: https://dl.google.com/dl/cloudsdk/channels/rapid/install_google_cloud_sdk.bash
|
url: https://dl.google.com/dl/cloudsdk/channels/rapid/install_google_cloud_sdk.bash
|
||||||
dest: /tmp/gcp-installer.sh
|
dest: "{{dir}}/gcp-installer.sh"
|
||||||
|
|
||||||
- name: Get gsutil tool
|
- name: Get gsutil tool
|
||||||
script: /tmp/gcp-installer.sh
|
script: "{{dir}}/gcp-installer.sh"
|
||||||
environment:
|
environment:
|
||||||
CLOUDSDK_CORE_DISABLE_PROMPTS: 1
|
CLOUDSDK_CORE_DISABLE_PROMPTS: 1
|
||||||
|
CLOUDSDK_INSTALL_DIR: "{{dir}}"
|
||||||
no_log: True
|
no_log: True
|
||||||
|
ignore_errors: true
|
||||||
- name: Create a lifecycle template for the bucket
|
|
||||||
file: src=gcs_life.json path=/tmp/gcs_life.json
|
|
||||||
|
|
||||||
- name: Hack the boto config for GCS access keys
|
|
||||||
lineinfile:
|
|
||||||
dest: .boto
|
|
||||||
line: "gs_access_key_id = {{ gs_key }}"
|
|
||||||
regexp: "^#gs_access_key_id = .*$"
|
|
||||||
no_log: True
|
|
||||||
|
|
||||||
- name: Hack the boto config for GCS secret access keys
|
|
||||||
lineinfile:
|
|
||||||
dest: .boto
|
|
||||||
line: "gs_secret_access_key = {{ gs_skey }}"
|
|
||||||
regexp: "^#gs_secret_access_key = .*$"
|
|
||||||
no_log: True
|
|
||||||
|
|
||||||
- name: Apply the lifecycle rules
|
- name: Apply the lifecycle rules
|
||||||
shell: bash google-cloud-sdk/bin/gsutil lifecycle set /tmp/gcs_life.json gs://{{ test_name }}
|
command: "{{dir}}/google-cloud-sdk/bin/gsutil lifecycle set {{dir}}/gcs_life.json gs://{{test_name}}"
|
||||||
environment:
|
environment:
|
||||||
BOTO_CONFIG: .boto
|
BOTO_CONFIG: "{{dir}}/.boto"
|
||||||
|
no_log: True
|
||||||
|
|
||||||
- name: Upload collected diagnostic info
|
- name: Upload collected diagnostic info
|
||||||
gc_storage:
|
gc_storage:
|
||||||
bucket: "{{ test_name }}"
|
bucket: "{{ test_name }}"
|
||||||
mode: put
|
mode: put
|
||||||
permission: private
|
permission: public-read
|
||||||
object: "build-{{ ostype }}-{{ kube_network_plugin }}-logs.tar.gz"
|
object: "{{ file_name }}"
|
||||||
src: logs.tar.gz
|
src: "{{dir}}/logs.tar.gz"
|
||||||
headers: '{"Content-Encoding": "x-gzip"}'
|
headers: '{"Content-Encoding": "x-gzip"}'
|
||||||
gs_access_key: "{{ gs_key }}"
|
gs_access_key: "{{ gs_key }}"
|
||||||
gs_secret_key: "{{ gs_skey }}"
|
gs_secret_key: "{{ gs_skey }}"
|
||||||
|
expiration: "{{expire_days * 36000|int}}"
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
no_log: True
|
||||||
|
|
||||||
|
- debug:
|
||||||
|
msg: "A public url https://storage.googleapis.com/{{test_name}}/{{file_name}}"
|
||||||
|
|
Loading…
Reference in New Issue