This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: batch/v1 | |
| kind: Job | |
| metadata: | |
| creationTimestamp: '2018-06-13T23:25:46Z' | |
| labels: | |
| controller-uid: 19c529b5-6f61-11e8-b78f-54ee755e59e3 | |
| job-name: openshift-ansible-istio-job | |
| name: openshift-ansible-istio-job | |
| namespace: istio-system | |
| resourceVersion: '396' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 3.10.0-514.21.2.el7.x86_64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Use to check | |
| gpg --verify file.sig file.txt | |
| gpg: Signature made Mon 05 Jan 2018 02:03:19 PM CDT | |
| gpg: using RSA key F30888493B5AA558623CC7113FFE99ABAB1F8E1B | |
| gpg: Good signature from "Foo bar <noone@nowhere.com>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| wildfly-domain: | |
| image: hawkular/wildfly-hawkular-javaagent:hawkular-1275 | |
| hostname: wf-domain | |
| environment: | |
| - HAWKULAR_MODE=domain | |
| wildfly-standalone: | |
| image: hawkular/wildfly-hawkular-javaagent:hawkular-1275 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| override_gem 'manageiq-ui-classic', git: 'https://github.com/israel-hdez/manageiq-ui-classic', branch: 'hawkular-1328' | |
| override_gem 'manageiq-providers-hawkular', git: 'https://github.com/israel-hdez/manageiq-providers-classic', branch: 'hawkular-1328' | |
| override_gem 'manageiq-providers-kubernetes', git: 'https://github.com/israel-hdez/manageiq-providers-kubernetes', branch: 'hawkular-1328' | |
| # override_gem 'hawkular-client', github: "https://github.com/hawkular/hawkular-client-ruby", branch: 'master' | |
| gem 'byebug' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone https://github.com/josejulio/manageiq-providers-hawkular | |
| cd manageiq-providers-hawkular | |
| git checkout hawkular-1259 | |
| git clone https://github.com/ManageIQ/manageiq.git --branch master --depth 1 spec/manageiq | |
| echo "override_gem 'manageiq-providers-kubernetes', git: 'https://github.com/josejulio/manageiq-providers-kubernetes', branch: 'update_hawkular_client_5.0.0-pre1'" >> spec/manageiq/bundler.d/vendor.rb | |
| ./bin/setup | |
| bundle exec rake spec |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var groupDefinition = new GroupDefinition(); | |
| groupDefinition.name = 'Servers by plugins'; | |
| groupDefinition.description = 'Group servers by plugin'; | |
| groupDefinition.expression = 'resource.type.category=SERVER\n' | |
| +'groupby resource.type.plugin'; | |
| groupDefinition.recalculationInterval = 60000; | |
| // Returns the new group definition that is ready to be used on other | |
| // calls or throws an exception |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2.2' | |
| services: | |
| hawkular-cassandra: | |
| image: cassandra:3.0.12 | |
| environment: | |
| - CASSANDRA_START_RPC=true | |
| hawkular-services: | |
| image: hawkular/hawkular-services:latest | |
| links: | |
| - hawkular-cassandra |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.rhq.plugins.myplugin; | |
| import org.rhq.plugins.jmx.MBeanResourceDiscoveryComponent; | |
| import org.rhq.core.domain.configuration.Configuration; | |
| import org.rhq.core.domain.resource.ResourceType; | |
| import org.rhq.core.pluginapi.inventory.DiscoveredResourceDetails; | |
| import java.util.Set; | |
| /** |
NewerOlder