码迷,mamicode.com
首页 > 其他好文 > 详细

OpenShift实战(五):OpenShift容器监控Metrics

时间:2018-04-18 19:01:55      阅读:629      评论:0      收藏:0      [点我收藏+]

标签:book   enable   mod   clust   volume   awk   ons   安装   pen   

1、创建持久化metric pv卷

[root@master1 pv]# cat metrics.json 
apiVersion: v1
kind: PersistentVolume
metadata:
  name: metrics
spec:
  capacity:
    storage: 21Gi 
  accessModes:
  - ReadWriteOnce 
  nfs: 
    path: /export/pv/metrics
    server: 192.168.10.110
  persistentVolumeReclaimPolicy: Recycle

  PS:不做持久化存储无需创建PV

2、更改ansible hosts

[root@master1 ~]# cat /etc/ansible/hosts 
# Create an OSEv3 group that contains the masters, nodes, and etcd groups
[OSEv3:children]
masters
nodes
etcd
new_nodes
#lb
# Set variables common for all OSEv3 hosts
[OSEv3:vars]
# SSH user, this user should allow ssh based auth without requiring a password
ansible_ssh_user=root
ansible_become=yes
debug_level=2
openshift_deployment_type=origin
# If ansible_ssh_user is not root, ansible_become must be set to true
#ansible_become=true
openshift_repos_enable_testing=true
openshift_enable_service_catalog=false
template_service_broker_install=false
# uncomment the following to enable htpasswd authentication; defaults to DenyAllPasswordIdentityProvider
openshift_master_identity_providers=[{name: htpasswd_auth, login: true, challenge: true, kind: HTPasswdPasswordIdentityProvider, filename: /etc/origin/master/htpasswd}]
openshift_disable_check=disk_availability,docker_storage,memory_availability,docker_image_availability,package_version
# config for metrics
openshift_release=3.6.1
# config by metrics
openshift_metrics_install_metrics=true
openshift_metrics_image_prefix=openshift/origin-
openshift_metrics_image_version=v3.6.1
openshift_metrics_cassandra_pvc_size=21Gi

openshift_clock_enabled=true
#openshift_master_cluster_method=native
#openshift_master_cluster_hostname=openshift.xxx.net
#openshift_master_cluster_public_hostname=openshift.xxx.net
#openshift_node_kubelet_args={pods-per-core: [10], max-pods: [250], image-gc-high-threshold: [90], image-gc-low-threshold: [80]}
# host group for masters
[masters]
master1.xxx.net
#master2.xxx.net

# host group for lb
#[lb]
#etcd1.xxx.net

# host group for etcd
[etcd]
etcd1.xxx.net
etcd2.xxx.net
etcd3.xxx.net
# host group for nodes, includes region info
[nodes]
master1.xxx.net
#master2.xxx.net
node1.xxx.net openshift_node_labels="{‘region‘: ‘infra‘, ‘zone‘: ‘default‘}"
node2.xxx.net openshift_node_labels="{‘region‘: ‘infra‘, ‘zone‘: ‘default‘}"
node3.xxx.net openshift_node_labels="{‘region‘: ‘infra‘, ‘zone‘: ‘default‘}"
node4.xxx.net
node5.xxx.net 
node6.xxx.net openshift_node_labels="{‘region‘: ‘subnet8‘, ‘zone‘: ‘default‘}"
node7.xxx.net openshift_node_labels="{‘region‘: ‘subnet8‘, ‘zone‘: ‘default‘}"
node8.xxx.net openshift_node_labels="{‘region‘: ‘subnet7‘, ‘zone‘: ‘default‘}"
node9.xxx.net openshift_node_labels="{‘region‘: ‘subnet7‘, ‘zone‘: ‘default‘}"
#
[new_nodes]

3、执行安装

ansible-playbook -i /etc/ansible/hosts openshift-ansible-openshift-ansible-3.6.173.0.104-1/playbooks/byo/openshift-cluster/openshift-metrics.yml -e openshift_metrics_install_metrics=True -e openshift_metrics_hawkular_hostname=metrics.xxx.net -e openshift_metrics_cassandra_storage_type=pv

4、安装成功界面如下

技术分享图片

5、查看web console

技术分享图片

  PS:首次安装较慢

6、查看监控

技术分享图片

 

OpenShift实战(五):OpenShift容器监控Metrics

标签:book   enable   mod   clust   volume   awk   ons   安装   pen   

原文地址:https://www.cnblogs.com/dukuan/p/8876091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!