client.pods.getBy({ labelSelector: 'name=hello-node' }, function (err, pods) {
console.log(err, pods)
})
this.getBy = function (query, callback) {
/**
var qstring = '';
if(typeof query === 'object') {
Object.keys(query, function (key, value) {
qstring += '&' + key + '=' + value;
});
qstring = qstring.substring(1);
} else {
qstring = query;
}
**/
I want use labelSelector
but i see