manageiq | ManageIQ Open-Source Management Platform
kandi X-RAY | manageiq Summary
kandi X-RAY | manageiq Summary
ManageIQ Open-Source Management Platform
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Returns an array of objects matching the targets .
- Creates a new report
- Creates a new user .
- Saves data to the target task .
- Returns an array of targets .
- seed a report
- Returns an array of targets for the given targets
- Invokes a region .
- Purges the records from the batch_ids .
- process the application name
manageiq Key Features
manageiq Examples and Code Snippets
Community Discussions
Trending Discussions on manageiq
QUESTION
I'm calling AWX template from ManageIQ. I'm passing 9 variables to the playbook (with prompt on launch
active). The playbook is successfully called, and all of the vars come through. However two of the vars are supposed to be arrays. Instead they come through to AWX as strings: e.g., '["chefclient"]'
instead of ["chefclient"]
.
I have confirmed that these vars are indeed of type array in ManageIQ before I pass them to the AWX template.
Any clue why this is happening? Do all vars get irresistibly converted to strings? How do I fix this?
Thank you!
...ANSWER
Answered 2021-Feb-06 at 00:17I have basically had a variable in ansible tower/awx that takes input as Text with server names as array/List. example: ["node1","node2","node3"] and once job is launched I can see the variable in the extra variables as '["node1","node2","node3"]'. I'm not sure about reason why it does that but it doesn't effect your subsequent ansible operations on that variable. Not all variables gets single quotations only when you use array/List.
QUESTION
I'm calling infoblox from ansible using the following playbook:
...ANSWER
Answered 2020-Oct-26 at 14:18This might not solve it for others, but this solved it for me:
- Got a new password for Ansible to use to log into Infoblox.
- Create a new ansible vault file containing the new infoblox password. I made a new password for the vault file encryption also.
- I created a new credential object in ansible to enable ansible to be able to read the new vault file.
- I updated the playbook to use the new vault.
It works now. Something was wrong with the encryption.
QUESTION
I'm storing a config file in version control (GitLab) which contains information to be read by my ruby app. This info is stored as an object containing objects containing objects.
(Update adding more detail and examples for clarity as requested...)
From within my app I can successfully GET the file (which returns the following JSON Object (some bits trimmed with ...
for readability):
{"file_name"=>"approval_config.json", "file_path"=>"approval_config.json", "size"=>1331, "encoding"=>"base64", "content_sha256"=>"1c21cbb...fa453fe", "ref"=>"master", "blob_id"=>"de...915", "commit_id"=>"07e...4ff", "last_commit_id"=>"07e...942f", "content"=>"ogICAg...AgICB"}
I can JSON parse the above object and access the contents
property on that object. The value of the contents
property is a base64Encoded string containing the actual contents of my file in GitLab. I can successfully decode this and see the JSON string stored in GitLab:
"{"G000":{"1":{"max":"4000","name":"Matthew Lewis","id":"ord-matthewl","email":"matthew.lewis@companyx.com"},"2":{"max":"4000","name":"Brendan Jones","id":"ord-brendanj","email":"brendan.jones@companyx.com"},"3":{"max":"20000","name":"Henry Orson","id":"ord-henryo","email":"henry.orson@companyx.com"},"4":{"max":"10000000","name":"Chris Adams","id":"ord-chrisa","email":"chris.adams@companyx.com"}},"G15":{"1":{"max":"4000","name":"Mike Butak","id":"ord-mikebu","email":"mike.butak@companyx.com"},"2":{"max":"4000","name":"Joseph Lister","id":"ord-josephl","email":"joseph.lister@companyx.com"},"3":{"max":"20000","name":"Mike Geisler","id":"ord-mikeg","email":"mike.geisler@companyx.com"},"4":{"max":"10000000","name":"Samuel Ahn","id":"ord-samuela","email":"samuel.ahn@companyx.com"}}}"
THIS string (above), I cannot JSON parse. I get an "unexpected token at '{ (JSON::ParserError)" error.
While writing this update it occurs to me that this "un-parsable" string is simply what I put in the file to begin with. Perhaps the method I used to stringify the file's contents in the first place is the issue. I simply pasted a valid javascript object in my browser's console, JSON.stringify'd it, copied the result from the console, and pasted it in my file in GitLab. Perhaps I need to use Ruby's JSON.stringify method to stringify it?
Based on feedback from @ToddA.Jacobs, I tried the following in my ruby script:
...ANSWER
Answered 2020-Sep-02 at 17:19Your input format is invalid: you're nesting unescaped double quotes, and somehow expecting that to work. Just leave off the outer quotes. For example:
QUESTION
This README file provides a link to instructions on how to create the ManageIQ Appliance dev setup for a MAC OSX environment, but it says that Linux instructions are TBD. See Screenshot:
Are we truly limited to MAC OS for development? Are there no instructions out there for setting up in a Linux or Windows environment?
Thank you!
...ANSWER
Answered 2020-Apr-16 at 09:13Can one create an MIQ Dev Appliance in Linux or Windows environment?
You can find the detailed guide here for different Linux distros.
Are we truly limited to MAC OS for development?
The main limitation is that Podman client On MacOS doesn't work properly. Since podman a tool for running Linux containers, you gonna need some remote linux machine running, in order to install the remote client and then setup ssh connection information in the podman-remote.conf file. (here)
QUESTION
I try to monitor Azure with ManageIQ. The ManageIQ cloud provider requests the Azure client id and Azure client token. But I have no idea how to find client id and to generate key token on Azure portal. How can I find them?
...ANSWER
Answered 2018-Apr-19 at 05:55Sign in to Azure Portal and select your default directory (if you have multiple directories).
Azure Active Directory => App registrations => + New application registration (Name: demo Application Type: Web app/ API, Sign-on URL: http://demo.com) => Create
Go to App registrations => Select your Application => Settings => API Access => Keys => (Keyname, Duration) => Save
Note: Copy the key value. You won’t able to retrieve after you leave this blade.
Finally, here is your Application ID (Client ID) and Keys (Client Key):
QUESTION
I try to monitor Hawkular with manageiq on Centos 7. These are my monitoring implementation process which are run on root privilege.
First cassandra nosql db is executed.
...ANSWER
Answered 2017-Jan-29 at 06:35I solved it. My OS is windows 10 pro, but my hyper-v service was deactivated. I activated hyper-v and it worked well. Thanks any way
QUESTION
ANSWER
Answered 2018-Oct-03 at 00:10It seems that worker, which takes care of refreshing, is not starting at all due to the insufficient resources on Manage IQ server. If your swap is more than 60% full (seen from the log) then the services already used all of your RAM.
You can get Basic ManageIQ server requirements for each type of server (Vagrant, Docker, Public cloud) here: http://manageiq.org/docs/get-started
QUESTION
ManageIQ creates logs in automation.log in the following form:
...ANSWER
Answered 2018-Mar-16 at 17:02The first 2 have the same service_template_provision_request identifier and also have the same number in the identifier after the hashtag at the start (29399). The last 2 logs have the same identifier after the colon in the hashtag at the start (44d130). I'm wondering what all of these mean.
The first part of #29409:44d130
(the 29409
) is the process id as you would see in top
or ps
. The second part (the 44d130
) is the Ruby thread id, within that process. In your case, you have multiple processes with the same apparent thread id, but that is complelely coincidental.
QUESTION
My development environment is CentOS 7 in vmware workstation 11 and manageiq docker container (manageiq/manageiq:euwe-2) on eclipse docker perspective. The manageiq appplication (https://127.0.0.1:8443) is executed well. But connecting hawkular is failed. Below is my hawkular execution command
...ANSWER
Answered 2018-Jan-29 at 23:52This disconnection is due to "iptables that was blocking the loopback port"
.
So the one command line solved my issue.
QUESTION
I use monitoring application "ManageIQ" inside Docker container with the ssl port to check the application "hawkular" which is located outside the Docker container. Below are the docker commands:
...ANSWER
Answered 2017-Dec-27 at 05:39localhost
in a container
is not localhost
on host OS. these are different.
To connect the address of host OS from a container
, use docker0
interface which is default bridge network
docker serves by default.
(Of course, you could create your own docker network other than default bridge network, refer here)
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install manageiq
Fork the source to contribute
Learn to use ManageIQ
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page