This reference for version: 1.1.4
+Moon is an enterprise version of Selenoid using Kubernetes to launch browsers.
+1. Getting Started
+1.1. Quick Start Guide
+-
+
-
+
Prerequisites:
+++-
+
-
+
Running Kubernetes cluster
+
+ -
+
+kubectl
client installed and pointing to the cluster
+
+ -
+
-
+
Examples of used YAML and JSON files can be found in Example Configuration Files section.
+
+ -
+
Create
+users.htpasswd
inusers
directory and initialize users configuration:++++$ htpasswd -Bbn test test-password >> users.htpasswd +$ kubectl create secret generic users --from-file=./users.htpasswd
+
+ -
+
Copy test quota to
+quota
directory and initialize browsers configuration:++++$ mkdir -p quota +$ touch quota/browsers.json # Add contents to file +$ kubectl create configmap quota --from-file=quota
+
+ -
+
Initialize S3 bucket to upload test videos and logs. Optional, but without this configuration uploading will not work. In this example we are demonstrating how to do this for Google Cloud and assume you have
+moon-test
bucket already created:++++$ kubectl create configmap s3-config --from-literal=endpoint="https://storage.googleapis.com" --from-literal=version="S3v2" --from-literal=bucket="moon-test" +$ kubectl create secret generic s3-credentials --from-literal=accessKey="<Your-S3-Access-Key>" --from-literal=secretKey="<Your-S3-Secret-Key>"
+
+ -
+
Initialize resource quota:
+++++$ kubectl create -f moon-sessions.yaml
+
+ -
+
Start Moon:
+++++$ kubectl create -f moon.yaml
+
+ -
+
Start Moon API:
+++++$ kubectl create -f moon-api.yaml
+
+ -
+
Determine IP addresses or hostnames for
+moon
andmoon-api
services. When testing in Minikube this can be done with the following commands:++++$ minikube service moon --url +http://192.168.99.100:30979
+++++$ minikube service moon-api --url +http://192.168.99.100:41567
+
+ -
+
Run your tests against
+moon
service like you do with regular Selenium:++++http://192.168.99.100:30979/wd/hub
+
+ -
+
Check that
+moon-api
returns statistics:++++$ http://192.168.99.100:41567/status
+++A successful request should return a JSON with browser usage statistics.
+
+
1.2. Installing to Openshift
+-
+
-
+
Prerequisites:
+++-
+
-
+
Running Openshift cluster
+
+ -
+
+oc
client installed and pointing to the cluster
+
+ -
+
-
+
Example YAML and JSON files can be found in Example Configuration Files section.
+
+ -
+
Add
+view
policy todefault
account so Moon could read project pod quota:++++$ export PROJECT=default +$ oc policy add-role-to-user view system:serviceaccount:$PROJECT:default
+
+ -
+
Create
+users.htpasswd
and respective secret:++++$ htpasswd -Bbn test test-password >> users.htpasswd +$ oc create secret generic users --from-file=./users.htpasswd
+
+ -
+
Copy test quota to
+quota
directory and initialize browsers configuration:++++$ mkdir -p quota +$ touch quota/browsers.json # Add contents to file +$ oc create configmap quota --from-file=./quota
+
+ -
+
Start services using Openshift UI or the following command:
+++++$ oc create -f moon-openshift.yaml -n $PROJECT
+
+
1.3. Cluster Architecture
++
Moon cluster consists of several important components:
+-
+
-
+
Kubernetes configuration map to store browser quota information and various runtime settings.
+
+ -
+
One or more
+moon
application containers. Their main purpose is to start and stop browser containers. These replicas are usually exposed as Kubernetes service available on standard Selenium port4444
. You should run all the tests against this service.
+ -
+
One or more
+moon-api
application containers. This API collects and returns various data about running browsers.moon-api
is usually exposed as Kubernetes service available on HTTP port (e.g.80
or8080
).
+ -
+
Running browser containers. Moon is using exactly the same containers as Selenoid.
+
+
Basic browser startup functionality is completely stateless and does not require any external database to be running.
+1.4. Moon vs Selenoid
+Moon takes all the best practices and features from Selenoid and adds many more:
+-
+
-
+
Unlimited automatic scalability. You always have enough browsers of any desired version available in the cluster. When running the cluster in cloud platforms such as Google Cloud you can adjust settings to automatically scale depending on current load. This allows to combine efficiency with competitive cost.
+
+ -
+
Completely stateless. Selenoid stores in memory information about currently running browser sessions. If for some reason its process crashes - then all running sessions are lost. Moon contrarily has no internal state and can be replicated across datacenters. Browser sessions remain alive even if one or more replicas go down.
+
+ -
+
Uniform load distribution. Load balancers like Ggr provide are using random load distribution across available browser hosts. This makes them inefficient when overall load is above 80% of cluster capacity. Moon delivers exactly uniform distribution working good even under 100% load.
+
+ -
+
Fully graceful. Any maintenance operations with the cluster do not interrupt running browser sessions. Every cluster component shuts down gracefully.
+
+
2. Configuration
+2.1. Basic Configuration
+-
+
-
+
Moon is using exactly the same JSON format as Selenoid. An sample file can be found in Example Configuration Files section. Because everything in Kubernetes is being run in containers - you cannot specify path to webdriver binary, only container with browser. To be available across the cluster all configuration data is stored in ConfigMap.
+
+ -
+
Moon is using htpasswd to store users information as Ggr. This data is stored in Kubernetes Secret and mounted to respective pods.
+
+ -
+
Moon supports multiple users, so you need to create one file for each user named
+<username>.json
. For example for usertest
to work properly you should createtest.json
file.
+ -
+
All JSON files should be stored in the same directory because in that case you can update configuration with just one command.
+
+
2.1.1. Updating Browsers List
+To add or remove browsers:
+-
+
-
+
Having configuration files stored in directory update Moon configuration:
+++++$ kubectl replace configmap quota --from-file=quota
+
+ -
+
Gracefully restart Moon service:
+++++$ kubectl replace -f moon.yaml
+
+
All running user sessions will continue to work without any interruption.
+2.1.2. Updating Users List
+To add or remove users:
+-
+
-
+
Modify
+users.htpasswd
withhtpasswd
command:++++$ htpasswd -Bbn new-user new-user-password >> users.htpasswd # Adding new user +$ htpasswd -Bb users.htpasswd some-user new-password # Updating password +$ htpasswd -D users.htpasswd test-user # Deleting existing user
+
+ -
+
Update
+users
secret:++++$ kubectl replace secret users --from-file=./users.htpasswd
+
+ -
+
Gracefully restart Moon service:
+++++$ kubectl replace -f moon.yaml
+
+
2.2. Advanced Configuration
+2.2.1. Using Custom Moon Images
+By default Moon downloads some service images (aerokube/defender
, aerokube/uploader
and so on) from public Docker registry. If in your environment due to security restrictions Docker images can only be downloaded from private registry you need to provide image names to Moon. To do this:
-
+
-
+
Copy the following public images to your registry:
+++++aerokube/moon +aerokube/moon-api +selenoid/video-recorder +aerokube/defender +aerokube/uploader +aerokube/logger
+
+ -
+
Create a
+service.json
file with the following contents:++++$ mkdir -p moon-config +$ touch moon-config/service.json # Add contents to file as shown on the next line +$ cat moon-config/service.json +{ + "images": { + "videoRecorder": "my-registry.example.com/moon/video-recorder:_{revnumber}_", + "defender": "my-registry.example.com/moon/defender:_{revnumber}_", + "uploader": "my-registry.example.com/moon/uploader:_{revnumber}_", + "logger": "my-registry.example.com/moon/logger:_{revnumber}_" + } +}
+
+ -
+
Create a
+moon-config
ConfigMap object:++++$ kubectl replace configmap moon-config --from-file=moon-config
+
+ -
+
Restart Moon to apply changes
+
+
2.3. CLI Flags
+These flags should be specified in Kubernetes YAML files when starting the cluster.
+2.3.1. Moon Flags
+The following flags are supported by moon
:
-grace-period duration
+ graceful shutdown (default 30s)
+ -guest-user string
+ guest quota user name (default "browsers")
+ -listen string
+ address to bind (default ":4444")
+ -namespace string
+ namespace (default "default")
+ -quota-dir string
+ quota directory (default "quota")
+ -session-attempt-timeout duration
+ new session attempt timeout (default 30s)
+3. License Agreement
+Last updated January 5th, 2018. Replaces the prior version in its entirety.
+This is a legal agreement. By downloading, installing, copying, saving on Customer’s computer, or otherwise using Aerokube software, support or products Customer becomes a party to this Agreement and Customer consents to be bound by all the terms and conditions set forth below.
+-
+
-
+
Parties
+++-
+
-
+
"Aerokube", "Licensor" or "We" means Aerokube OÜ, having its principal place of business at Narva mnt 7-123, Tallinn city, Harju county, 10117, Estonia, registered in the Commercial Register of Estonia, registry code: 12345678.
+
+ -
+
"Customer", "Licensee" or "You" means the sole proprietor or legal entity specified in the Subscription Confirmation. For legal entities, "Customer" includes any entity which controls, is controlled by, or is under common control with Customer. For the purposes of this definition, "control" means one of the following:
+++-
+
-
+
The power, directly or indirectly, to direct or manage such entity, whether by contract or otherwise.
+
+ -
+
Ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity.
+
+
+ -
+
+ -
+
-
+
Definitions
+++-
+
-
+
"Agreement" means this License Agreement.
+
+ -
+
"Product" means any generally available Licensor’s software product identified by Licensor as a software developer tool. For the avoidance of doubt, the Product is not produced to the specifications of Customer nor customized through modification or personalization, is intended for mass distribution, and no software code will be provided to Customer.
+
+ -
+
"User" means any employee, independent contractor or other personnel obtaining access to the Product(s) from Customer.
+
+ -
+
"Number of Concurrent Sessions" means maximum number of software testing processes being run using the Product in parallel. This can be for example browsers executing User’s tests.
+
+ -
+
"License Key" means a unique key-code that enables a Licensee to use the Product by unlocking the fixed Number of Concurrent Sessions. Only Licensor and/or its representatives are permitted to produce License Keys for the Product.
+
+ -
+
"Subscription" means an arrangement for making use of the Product of periodic nature on a prepayment plan. For the purpose of clarity, Subscription includes the subscription term, Products provided to Customer, subscription fees, payment schedules and fixed number of License Keys.
+
+ -
+
"Product Evaluation" means using the Product without a valid License Key.
+
+ -
+
"Subscription Confirmation" means an email confirming Customer’s rights to access and use Products, including total Number of Concurrent Sessions.
+
+ -
+
"Product Installation" means a Product copy running on Customer’s computer device, hardware server or virtual machine.
+
+ -
+
"Product Version" means a release, update, or upgrade of a particular Product that is not identified by Licensor as being made for the purpose of fixing software bugs.
+
+ -
+
"Bug Fix Update" for a particular Product Version means a software update or release that is specifically identified by Licensor as a bug fix for that Product Version.
+
+ -
+
"Fallback Date" means the date that was 12 months prior to the date of expiration of the Subscription.
+
+ -
+
"Fallback Version" means the most recent Product Version that Licensor made available for public purchase prior to the Fallback Date, along with any Bug Fix Updates for that Product Version. For the purpose of clarity, Fallback Version does not include any Product updates or upgrades other than Bug Fix Updates that Customer may have used in the period between the Fallback Date and the date of expiration of the Subscription.
+
+ -
+
"E-mail Support" means a form of customer support provided by the Licensor. At the time of writing, the corresponding e-mail address is support@aerokube.com; should the address be changed, the new address will be referred to on the Licensor’s web site.
+
+ -
+
"Instant Messaging Support" means a form of customer support provided by the Licensor. At the time of writing, the corresponding address to support channel is https://t.me/aerokube_moon; should the address be changed, the new address will be referred to on the Licensor’s web site.
+
+ -
+
"Affiliate" means any entity belonging to the same group as the Licensor.
+
+
+ -
+
-
+
How this Agreement Works
+++-
+
-
+
Entire Agreement. This Agreement, including the Third-Party Software license terms, constitutes the entire agreement between the parties concerning its subject matter and supersedes any prior agreements between Customer and Licensor regarding Customer’s use of any Products. No purchase order, other ordering document or any handwritten or typewritten text which purports to modify or supplement the printed text of this Agreement or any schedule will add to or vary the terms of this Agreement unless signed by both Customer and Licensor.
+
+ -
+
Reservation of Rights. Aerokube reserves the right at any time to cease the support of the Product and to alter prices, features, specifications, capabilities, functions, terms of use, release dates, general availability or other characteristics of the Product.
+
+ -
+
Changes to this Agreement. We may update or modify this Agreement from time to time, including any referenced policies and other documents. If a revision meaningfully reduces Customer’s rights, we will use reasonable efforts to notify Customer. If we modify this Agreement, the modified version of the Agreement will be effective from the start of the next Subscription term. In this case, if Customer objects to the updated Agreement terms, as Customer’s exclusive remedy, Customer may cancel the Subscription. Customer may be required to click through the updated Agreement to show its acceptance. For the avoidance of doubt, each Subscription Confirmation is subject to the version of the Agreement in effect on the Subscription Confirmation date.
+
+ -
+
Opportunity to Review. Customer hereby declares that Customer has had sufficient opportunity to review this Agreement, understand the content of all of its clauses, negotiate its terms, and seek independent professional legal advice in that respect before entering into it. Consequently, any statutory "form contract" ("adhesion contract") regulations shall not be applicable to this Agreement.
+
+ -
+
Severability. If a particular term of this Agreement is not enforceable, the unenforceability of that term will not affect any other terms of this Agreement.
+
+ -
+
Headings. Headings and titles are for convenience only and do not affect the interpretation of this Agreement.
+
+ -
+
No Waiver. Our failure to enforce or exercise any part of this Agreement is not a waiver of that section.
+
+ -
+
Notice. Aerokube may deliver any notice to Customer via electronic mail to an email address provided by Customer, registered mail, personal delivery or renowned express courier (such as DHL, FedEx or UPS). Any such notice will be deemed to be effective:
+++-
+
-
+
On the day the notice is sent to Customer via email.
+
+ -
+
Upon personal delivery.
+
+ -
+
One (1) day after deposit with an express courier or five (5) days after deposit in the mail, whichever occurs first.
+
+
+ -
+
-
+
Governing Law. This Agreement will be governed by the laws of the Estonia, without reference to conflict of laws principles. Customer agrees that any litigation relating to this Agreement may only be brought in, and will be subject to the jurisdiction of, any competent court of the Estonia. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods does not apply to this Agreement.
+
+ -
+
Exceptions or Modifications. For exceptions or modifications to this Agreement, please contact Aerokube at: support@aerokube.com In case the terms of this Agreement are in conflict with the terms of any agreement individually negotiated and agreed between Aerokube and Customer, the terms of the latter shall prevail.
+
+ -
+
Force Majeure. Except with respect to Customer’s payment obligations, neither party shall be liable to the other for any delay or failure to perform any obligation under this Agreement (except for a failure to pay fees) if the delay or failure is due to unforeseen events which occur after the signing of this Agreement and which are beyond the reasonable control of such party ("Force Majeure Event"), such as a strike, blockade, war, act of terrorism, riot, natural disaster, failure or diminishment of power or telecommunications or data networks or services, or refusal of a license by a government agency. In the event of a Force Majeure Event that prevents one part from substantially performing its obligations hereunder for a period of ten (10) days or more, either party may terminate this Agreement on five (5) days written notice.
+
+
+ -
+
-
+
Grant of Rights
+++-
+
-
+
The Product include code and libraries licensed to Licensor by third parties, including open source software.
+
+ -
+
The Product is provided basing on the Number of Concurrent Sessions. If Customer complies with the terms of this Agreement, Customer has the rights stipulated hereunder for each Subscription that Customer acquires. Customer’s rights acquired in relation to the Product are limited to those necessary to enable Customer and its Users to effectively operate the Product(s). All other rights remain reserved to Licensor.
+
+ -
+
Unless the Subscription has expired or this Agreement is terminated in accordance with respective section, and subject to the terms and conditions specified herein, Licensor grants Customer a non-exclusive and non-transferable right to use each Product covered by the Subscription as stipulated below.
+
+ -
+
Customer may:
+++-
+
-
+
For each License Key included to Subscription have one Product Installation of any version covered by the Subscription on any operating system supported by the Product.
+
+ -
+
Make one backup copy of the Product solely for archival/security backup purposes.
+
+
+ -
+
-
+
Customer may not:
+++-
+
-
+
Allow the same Product Installation to be used concurrently by more than the Number of Concurrent Sessions specified for used License Key in Subscription Confirmation.
+
+ -
+
Rent, lease, reproduce, modify, adapt, create derivative works of, distribute, sell, or transfer the Product.
+
+ -
+
Provide access to the Product or the right to use the Product to a third party.
+
+ -
+
Reverse engineer, decompile, disassemble, modify, translate, make any attempt to discover the source code of the Product.
+
+ -
+
Remove or obscure any proprietary or other notices contained in the Product.
+
+
+ -
+
-
+
Following the expiration of this Agreement, the rights stipulated in "Grant of Rights" section shall continue on a perpetual, royalty-free, non-exclusive, and non-transferable basis for the continued use of a Fallback Version of each Product covered by the Subscription. The limitations set forth in this section apply to the usage of the Fallback Version. The rights granted in this section are expressly contingent upon Customer not being in breach of this Agreement, including having paid in full the applicable Subscription fees for the preceding 12 months or longer without interruption.
+
+ -
+
Customer acknowledges that no ownership right is conveyed to Customer under this Agreement, irrespective of the use of terms such as "purchase" or "sale". Licensor has and retains all rights, title and interest, including all intellectual property rights, in and to the Products and any and all related or underlying technology, and any modifications or derivative works thereof, including without limitation as they may incorporate Feedback (as defined below).
+
+ -
+
This Agreement applies whether Customer purchases a Subscription directly from Licensor or through resellers. If Customer purchases through a reseller, the Subscription details shall be as stated in the Subscription Confirmation issued by the reseller to Customer, and the reseller is responsible for the accuracy of any such Subscription Confirmation. Resellers are not authorized to make any promises or commitments on Licensor behalf, and Customer understands and agrees that Licensor is not bound by any obligations to Customer other than as specified in this Agreement.
+
+
+ -
+
-
+
Access to Products
+++-
+
-
+
All deliveries under this Agreement will be electronic. Customer and its Users must have an Internet connection in order to receive any deliveries. For the avoidance of doubt, Customer is responsible for downloading and installing the Products. Download instructions are made available on Licensor website at http://aerokube.com.
+
+ -
+
Customer enables full access to Product Installation by specifying a License Key from Subscription Confirmation.
+
+ -
+
Subject to the terms of this Agreement, Customer is granted a right to install and use the Product for evaluation purposes without charge for unlimited amount of time. The Product contains a feature that will automatically limit allowed Number of Concurrent Sessions. Licensor reserves the right at any time to change that limit in new Product versions.
+
+
+ -
+
-
+
Fees
+++-
+
-
+
Customer shall pay its Subscription fees in accordance with Licensor Terms of Purchase or the reseller’s terms of purchase, whichever are applicable.
+
+ -
+
The Subscription fees shall be paid in full, and any levies, duties and/or taxes imposed by Customer’s jurisdiction (including, but not limited to, value added tax, sales tax and withholding tax), shall be borne solely by Customer.
+
+ -
+
Customer may not deduct any amounts from fees payable to Licensor or the reseller, unless otherwise specified in the applicable terms of purchase.
+
+
+ -
+
-
+
Feedback
+++-
+
-
+
Customer has no obligation to provide Licensor with ideas, suggestions, or proposals ("Feedback").
+
+ -
+
If Customer or Users submit Feedback to Licensor, then Customer grants Licensor a non-exclusive, worldwide, royalty-free license that is sub-licensable and transferable, to make, use, sell, have made, offer to sell, import, reproduce, publicly display, distribute, modify, or publicly perform the Feedback in any manner without any obligation, royalty or restriction based on intellectual property rights or otherwise.
+
+
+ -
+
-
+
LIMITED WARRANTY
+++ALL PRODUCTS ARE PROVIDED TO CUSTOMER ON AN "AS IS" AND "AS AVAILABLE" BASIS WITHOUT WARRANTIES. USE OF THE PRODUCTS IS AT YOUR OWN RISK. AEROKUBE MAKES NO WARRANTY AS TO THEIR USE OR PERFORMANCE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, AEROKUBE, AND ITS SUPPLIERS (WHICH SHALL INCLUDE THE PROVIDERS OF THE THIRD PARTY SOFTWARE) AND RESELLERS, DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE PRODUCTS, AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES. THIS LIMITED WARRANTY GIVES CUSTOMER SPECIFIC LEGAL RIGHTS. CUSTOMER MAY HAVE OTHER RIGHTS, WHICH VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION. AEROKUBE (AND ITS AFFILIATES, AGENTS, DIRECTORS AND EMPLOYEES) DOES NOT WARRANT:
+++-
+
-
+
THAT THE PRODUCTS ARE ACCURATE, RELIABLE OR CORRECT
+
+ -
+
THAT THE PRODUCTS WILL MEET YOUR REQUIREMENTS
+
+ -
+
THAT THE PRODUCTS WILL BE AVAILABLE AT ANY PARTICULAR TIME OR LOCATION, UNINTERRUPTED OR SECURE
+
+ -
+
THAT ANY DEFECTS OR ERRORS WILL BE CORRECTED
+
+ -
+
THAT THE PRODUCTS ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS
+
+
++ANY CONTENT OR DATA DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PRODUCTS ARE DOWNLOADED AT YOUR OWN RISK AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR LOSS OF DATA THAT RESULTS FROM SUCH DOWNLOAD. NO WARRANTY OR LIABILITY AT ALL IS GIVEN TO PRODUCTS UNDER EVALUATION.
+
+ -
+
-
+
DISCLAIMER OF DAMAGES
+++-
+
-
+
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL AEROKUBE (OR ITS AFFILIATES, AGENTS, DIRECTORS, OR EMPLOYEES), OR AEROKUBE LICENSORS, SUPPLIERS OR RESELLERS BE LIABLE TO CUSTOMER OR ANYONE ELSE FOR:
+++-
+
-
+
ANY LOSS OF USE, DATA, GOODWILL, OR PROFITS, WHETHER OR NOT FORESEEABLE
+
+ -
+
ANY LOSS OR DAMAGES IN CONNECTION WITH TERMINATION OR SUSPENSION OF CUSTOMER’S ACCESS TO OUR PRODUCTS IN ACCORDANCE WITH THIS AGREEMENT
+
+ -
+
ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES WHATSOEVER (EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF THESE DAMAGES), INCLUDING THOSE:
+++-
+
-
+
RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT FORESEEABLE
+
+ -
+
BASED ON ANY THEORY OF LIABILITY, INCLUDING BREACH OF CONTRACT OR WARRANTY, STRICT LIABILITY, NEGLIGENCE OR OTHER TORTIOUS ACTION
+
+ -
+
ARISING FROM ANY OTHER CLAIM ARISING OUT OF OR IN CONNECTION WITH CUSTOMER’S USE OF OR ACCESS TO THE PRODUCTS OR SUPPORT.
+
+
+ -
+
+ -
+
-
+
THE FOREGOING LIMITATION OF LIABILITY SHALL APPLY TO THE FULLEST EXTENT PERMITTED BY LAW IN THE APPLICABLE JURISDICTION.
+
+ -
+
OUR TOTAL LIABILITY IN ANY MATTER ARISING OUT OF OR IN RELATION TO THIS AGREEMENT IS LIMITED TO ONE HUNDRED (100) US DOLLARS OR THE AGGREGATE AMOUNT PAID OR PAYABLE BY THE CUSTOMER FOR PRODUCTS DURING THE THREE-MONTH PERIOD PRECEDING THE EVENT GIVING RISE TO THE LIABILITY, WHICHEVER IS GREATER. THIS LIMITATION WILL APPLY EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF LIABILITY EXCEEDING SUCH AMOUNT AND NOTWITHSTANDING ANY FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.
+
+
+ -
+
-
+
Term and Termination
+++-
+
-
+
The term of this Agreement will commence upon acceptance of this Agreement by Customer as set forth in the preamble above, and will continue for each Product through the end of the applicable subscription period specified in the respective Subscription Confirmation. This Agreement will automatically renew with respect to each Product for a successive subscription term, unless terminated as set forth herein.
+
+ -
+
Customer may terminate this Agreement at any time by cancelling its Product subscription. If such termination occurs during a then-current subscription period, this Agreement will continue to be effective until the end of that subscription period. Such termination does not relieve Customer of the obligation to pay any outstanding subscription fees owed to Licensor, and no credits or refunds will be issued to Customer for prepaid subscription fees (except as specified in the Licensor Terms of Purchase, if applicable).
+
+ -
+
Licensor may terminate this agreement if:
+++-
+
-
+
Customer has materially breached this Agreement and fails to cure such breach within thirty (30) days of written notice thereof.
+
+ -
+
Customer fails to make the timely payment of subscription fees in accordance with "Fees" Section of this Agreement.
+
+ -
+
Licensor is required to do so by law (for example, where the provision of the Product to Customer is, or becomes, unlawful).
+
+ -
+
Licensor elects to discontinue providing the Product, in whole or in part.
+
+
+ -
+
-
+
Licensor will make reasonable efforts to notify Customer via email as follows:
+++-
+
-
+
Thirty (30) days prior to termination of the Agreement when required to terminate by law or because of discontinued Product. In such events Customer will be entitled to a refund of the unused portion of prepaid subscription fees, if applicable.
+
+ -
+
Three (3) days prior to termination of the Agreement in other cases. In such events Customer will not be entitled to any refund of the unused portion of prepaid subscription fees.
+
+
+ -
+
-
+
Survival. Upon the expiration or termination of this Agreement by Customer and if Customer elects to use the Fallback Version of the Product this Agreement statements will also survive with respect to said Fallback Version.
+
+
+ -
+
-
+
Temporary Suspension for Non-payment
+
+ -
+
Licensor reserves the right to suspend or limit Customer’s access to Aerokube Products if Customer fails to pay subscription fees on time.
+
+ -
+
If Licensor suspends or limits Customer’s access to Aerokube Products for non-payment according, Customer must pay all past due amounts in order to restore full access to Aerokube Products.
+
+ -
+
Customer hereby agrees that Licensor is entitled to charge Customer for the time period during which Customer has access to Aerokube Products until Customer or Licensor terminates or suspends Customer’s subscription in accordance with this Agreement.
+
+ -
+
Export Regulations
+++Customer shall comply with all applicable laws and regulations with regards to economic sanctions, export controls, import regulations, and trade embargoes (all herein referred to as "Sanctions"), including those of the European Union and United States (specifically the Export Administration Regulations (EAR)). Customer declares that it is not a person targeted by Sanctions nor is it otherwise owned or controlled by or acting on behalf of any person targeted by Sanctions. Further, Customer warrants that it will not download or otherwise export or re-export the Product or any related technical data directly or indirectly to any person targeted by Sanctions or download or otherwise use the Product for any end-use prohibited or restricted by Sanctions.
+
+ -
+
Customer Support
+++-
+
-
+
Licensor provides Email Support as well as Instant Messaging Support. The response time will be reasonable, but no specific response time guarantees are given.
+
+ -
+
Customer may request additional paid support from Licensor which is subject of a supplementary individually negotiated Agreement between Customer and Licensor.
+
+ -
+
Any guarantees of support availability only apply to the latest version of Licensed Software available in Customer Subscription.
+
+
+ -
+
-
+
Customer Data
+++-
+
-
+
Use of Name and Logo. Customer agrees that Licensor may identify it as a customer of Aerokube and may refer to it by name, trade name and trademark, if applicable. Licensor may also briefly describe Customer’s business in Licensor marketing materials, on the Aerokube website and/or in public or legal documents. Customer hereby grants Licensor a worldwide, non-exclusive and royalty-free license to use Customer’s name and any of Customer’s trade names and trademarks solely pursuant to this marketing section.
+
+ -
+
Gathering of Usage Statistics. Customer acknowledges and agrees that the Product may contain a feature that reports the usage statistics, diagnostics information and usage meta-information of the Product back to the Licensor. Customer may opt out of the gathering of usage statistics by turning off this feature in the Product settings.
+
+
+ -
+
Appendix A: Pricing
+-
+
-
+
Moon price is calculated using so-called
+Number of Concurrent Sessions
that is to say total number of browser sessions being run in parallel. We control this by limiting total number of simultaneously running browser pods to the value you are purchasing.
+ -
+
When no license key is provided
+4 (four)
parallel browser sessions maximum are allowed. If such limit is sufficient for you - you are allowed use Moon without license key for unlimited period of time.
+
Number of Parallel Sessions | +Price per Month (Billed Annually), USD | +Price per Month (Month-to-Month), USD | +
---|---|---|
0-4 |
+free |
+free |
+
5 |
+$200 |
+$240 |
+
10 |
+$400 |
+$480 |
+
15 |
+$555 |
+$666 |
+
20 |
+$700 |
+$840 |
+
25 |
+$875 |
+$1050 |
+
30 |
+$900 |
+$1080 |
+
40 |
+$1200 |
+$1440 |
+
50 |
+$1500 |
+$1800 |
+
75 |
+$1875 |
+$2250 |
+
100 |
+$2500 |
+$3000 |
+
150 |
+$3000 |
+$3600 |
+
200 |
+$4000 |
+$4800 |
+
250 |
+$5000 |
+$6000 |
+
500 |
+$7500 |
+$9000 |
+
750 |
+$9000 |
+$10800 |
+
1000 |
+$10000 |
+$12000 |
+
2500 |
+$17500 |
+$21000 |
+
Appendix B: Example Configuration Files
+moon-sessions.yaml
file contentsapiVersion: v1
+kind: ResourceQuota
+metadata:
+ name: max-moon-sessions
+spec:
+ hard:
+ pods: "6"
+---
+apiVersion: rbac.authorization.k8s.io/v1beta1
+kind: ClusterRoleBinding
+metadata:
+ name: moon-rbac
+subjects:
+ - kind: ServiceAccount
+ name: default
+ namespace: default
+roleRef:
+ kind: ClusterRole
+ name: cluster-admin
+ apiGroup: rbac.authorization.k8s.io
+moon.yaml
file contentskind: Service
+apiVersion: v1
+metadata:
+ name: moon
+spec:
+ selector:
+ app: moon
+ ports:
+ - protocol: TCP
+ port: 4444
+ type: NodePort
+---
+apiVersion: apps/v1beta1
+kind: Deployment
+metadata:
+ name: moon
+spec:
+ replicas: 1
+ template:
+ metadata:
+ labels:
+ app: moon
+ spec:
+ containers:
+ - name: moon
+ image: aerokube/moon:1.1.4
+ resources:
+ limits:
+ cpu: "1"
+ memory: "512Mi"
+ requests:
+ cpu: "0.25"
+ memory: "64Mi"
+ ports:
+ - containerPort: 4444
+ volumeMounts:
+ - name: quota
+ mountPath: /quota
+ readOnly: true
+ - name: users
+ mountPath: /users
+ readOnly: true
+ volumes:
+ - name: quota
+ configMap:
+ name: quota
+ - name: users
+ secret:
+ secretName: users
+moon-api.yaml
file contentskind: Service
+apiVersion: v1
+metadata:
+ name: moon-api
+spec:
+ selector:
+ app: moon-api
+ ports:
+ - protocol: TCP
+ port: 8080
+ type: NodePort
+---
+apiVersion: apps/v1beta1
+kind: Deployment
+metadata:
+ name: moon-api
+spec:
+ replicas: 1
+ template:
+ metadata:
+ labels:
+ app: moon-api
+ spec:
+ containers:
+ - name: moon-api
+ image: aerokube/moon-api:1.1.4
+ resources:
+ limits:
+ cpu: "0.25"
+ memory: "128Mi"
+ requests:
+ cpu: "0.1"
+ memory: "64Mi"
+ ports:
+ - containerPort: 8080
+ volumeMounts:
+ - name: quota
+ mountPath: /quota
+ volumes:
+ - name: quota
+ configMap:
+ name: quota
+ - name: users
+ secret:
+ secretName: users
+browsers.json
file contents{
+ "firefox": {
+ "default": "58.0",
+ "versions": {
+ "58.0": {
+ "image": "selenoid/vnc:firefox_58.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "57.0": {
+ "image": "selenoid/vnc:firefox_57.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "56.0": {
+ "image": "selenoid/vnc:firefox_56.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "55.0": {
+ "image": "selenoid/vnc:firefox_55.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "54.0": {
+ "image": "selenoid/vnc:firefox_54.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "53.0": {
+ "image": "selenoid/vnc:firefox_53.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "52.0": {
+ "image": "selenoid/vnc:firefox_52.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "51.0": {
+ "image": "selenoid/vnc:firefox_51.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "50.0": {
+ "image": "selenoid/vnc:firefox_50.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "49.0": {
+ "image": "selenoid/vnc:firefox_49.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "48.0": {
+ "image": "selenoid/vnc:firefox_48.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "47.0": {
+ "image": "selenoid/vnc:firefox_47.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "46.0": {
+ "image": "selenoid/vnc:firefox_46.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "45.0": {
+ "image": "selenoid/vnc:firefox_45.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "44.0": {
+ "image": "selenoid/vnc:firefox_44.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "43.0": {
+ "image": "selenoid/vnc:firefox_43.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "42.0": {
+ "image": "selenoid/vnc:firefox_42.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "41.0": {
+ "image": "selenoid/vnc:firefox_41.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "40.0": {
+ "image": "selenoid/vnc:firefox_40.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "39.0": {
+ "image": "selenoid/vnc:firefox_39.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "38.0": {
+ "image": "selenoid/vnc:firefox_38.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "37.0": {
+ "image": "selenoid/vnc:firefox_37.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "36.0": {
+ "image": "selenoid/vnc:firefox_36.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "35.0": {
+ "image": "selenoid/vnc:firefox_35.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "34.0": {
+ "image": "selenoid/vnc:firefox_34.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "33.0": {
+ "image": "selenoid/vnc:firefox_33.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "32.0": {
+ "image": "selenoid/vnc:firefox_32.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "31.0": {
+ "image": "selenoid/vnc:firefox_31.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "30.0": {
+ "image": "selenoid/vnc:firefox_30.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "29.0": {
+ "image": "selenoid/vnc:firefox_29.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "28.0": {
+ "image": "selenoid/vnc:firefox_28.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "27.0": {
+ "image": "selenoid/vnc:firefox_27.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "26.0": {
+ "image": "selenoid/vnc:firefox_26.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "25.0": {
+ "image": "selenoid/vnc:firefox_25.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "24.0": {
+ "image": "selenoid/vnc:firefox_24.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "23.0": {
+ "image": "selenoid/vnc:firefox_23.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "22.0": {
+ "image": "selenoid/vnc:firefox_22.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "21.0": {
+ "image": "selenoid/vnc:firefox_21.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "20.0": {
+ "image": "selenoid/vnc:firefox_20.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "19.0": {
+ "image": "selenoid/vnc:firefox_19.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "18.0": {
+ "image": "selenoid/vnc:firefox_18.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "17.0": {
+ "image": "selenoid/vnc:firefox_17.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "16.0": {
+ "image": "selenoid/vnc:firefox_16.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "15.0": {
+ "image": "selenoid/vnc:firefox_15.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "14.0": {
+ "image": "selenoid/vnc:firefox_14.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "13.0": {
+ "image": "selenoid/vnc:firefox_13.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "12.0": {
+ "image": "selenoid/vnc:firefox_12.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "11.0": {
+ "image": "selenoid/vnc:firefox_11.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "10.0": {
+ "image": "selenoid/vnc:firefox_10.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "9.0": {
+ "image": "selenoid/vnc:firefox_9.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "8.0": {
+ "image": "selenoid/vnc:firefox_8.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "7.0": {
+ "image": "selenoid/vnc:firefox_7.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "6.0": {
+ "image": "selenoid/vnc:firefox_6.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "5.0": {
+ "image": "selenoid/vnc:firefox_5.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "4.0": {
+ "image": "selenoid/vnc:firefox_4.0",
+ "port": "4444",
+ "path": "/wd/hub"
+ },
+ "3.6": {
+ "image": "selenoid/vnc:firefox_3.6",
+ "port": "4444",
+ "path": "/wd/hub"
+ }
+ }
+ },
+ "chrome": {
+ "default": "65.0",
+ "versions": {
+ "65.0": {
+ "image": "selenoid/vnc:chrome_65.0",
+ "port": "4444"
+ },
+ "64.0": {
+ "image": "selenoid/vnc:chrome_64.0",
+ "port": "4444"
+ },
+ "63.0": {
+ "image": "selenoid/vnc:chrome_63.0",
+ "port": "4444"
+ },
+ "62.0": {
+ "image": "selenoid/vnc:chrome_62.0",
+ "port": "4444"
+ },
+ "61.0": {
+ "image": "selenoid/vnc:chrome_61.0",
+ "port": "4444"
+ },
+ "60.0": {
+ "image": "selenoid/vnc:chrome_60.0",
+ "port": "4444"
+ },
+ "59.0": {
+ "image": "selenoid/vnc:chrome_59.0",
+ "port": "4444"
+ },
+ "58.0": {
+ "image": "selenoid/vnc:chrome_58.0",
+ "port": "4444"
+ },
+ "57.0": {
+ "image": "selenoid/vnc:chrome_57.0",
+ "port": "4444"
+ },
+ "56.0": {
+ "image": "selenoid/vnc:chrome_56.0",
+ "port": "4444"
+ },
+ "55.0": {
+ "image": "selenoid/vnc:chrome_55.0",
+ "port": "4444"
+ },
+ "54.0": {
+ "image": "selenoid/vnc:chrome_54.0",
+ "port": "4444"
+ },
+ "53.0": {
+ "image": "selenoid/vnc:chrome_53.0",
+ "port": "4444"
+ },
+ "52.0": {
+ "image": "selenoid/vnc:chrome_52.0",
+ "port": "4444"
+ },
+ "51.0": {
+ "image": "selenoid/vnc:chrome_51.0",
+ "port": "4444"
+ },
+ "50.0": {
+ "image": "selenoid/vnc:chrome_50.0",
+ "port": "4444"
+ },
+ "49.0": {
+ "image": "selenoid/vnc:chrome_49.0",
+ "port": "4444"
+ },
+ "48.0": {
+ "image": "selenoid/vnc:chrome_48.0",
+ "port": "4444"
+ }
+ }
+ },
+ "opera": {
+ "default": "50.0",
+ "versions": {
+ "50.0": {
+ "image": "selenoid/vnc:opera_50.0",
+ "port": "4444"
+ },
+ "49.0": {
+ "image": "selenoid/vnc:opera_49.0",
+ "port": "4444"
+ },
+ "48.0": {
+ "image": "selenoid/vnc:opera_48.0",
+ "port": "4444"
+ },
+ "47.0": {
+ "image": "selenoid/vnc:opera_47.0",
+ "port": "4444"
+ },
+ "46.0": {
+ "image": "selenoid/vnc:opera_46.0",
+ "port": "4444"
+ },
+ "45.0": {
+ "image": "selenoid/vnc:opera_45.0",
+ "port": "4444"
+ },
+ "44.0": {
+ "image": "selenoid/vnc:opera_44.0",
+ "port": "4444"
+ },
+ "43.0": {
+ "image": "selenoid/vnc:opera_43.0",
+ "port": "4444"
+ },
+ "42.0": {
+ "image": "selenoid/vnc:opera_42.0",
+ "port": "4444"
+ },
+ "41.0": {
+ "image": "selenoid/vnc:opera_41.0",
+ "port": "4444"
+ },
+ "40.0": {
+ "image": "selenoid/vnc:opera_40.0",
+ "port": "4444"
+ },
+ "39.0": {
+ "image": "selenoid/vnc:opera_39.0",
+ "port": "4444"
+ },
+ "38.0": {
+ "image": "selenoid/vnc:opera_38.0",
+ "port": "4444"
+ },
+ "37.0": {
+ "image": "selenoid/vnc:opera_37.0",
+ "port": "4444"
+ },
+ "36.0": {
+ "image": "selenoid/vnc:opera_36.0",
+ "port": "4444"
+ },
+ "35.0": {
+ "image": "selenoid/vnc:opera_35.0",
+ "port": "4444"
+ },
+ "34.0": {
+ "image": "selenoid/vnc:opera_34.0",
+ "port": "4444"
+ },
+ "33.0": {
+ "image": "selenoid/vnc:opera_33.0",
+ "port": "4444"
+ },
+ "12.1": {
+ "image": "selenoid/vnc:opera_12.1",
+ "port": "4444",
+ "path": "/wd/hub"
+ }
+ }
+ }
+}
+moon-config/service.json
file contents{
+ "images": {
+ "videoRecorder": "selenoid/video-recorder",
+ "defender": "aerokube/defender:devel",
+ "uploader": "aerokube/uploader:devel",
+ "logger": "aerokube/logger:devel"
+ }
+}
+moon-openshift.yaml
file contentskind: Template
+apiVersion: v1
+metadata:
+ name: moon
+objects:
+
+ - kind: ResourceQuota
+ apiVersion: v1
+ metadata:
+ name: max-moon-sessions
+ spec:
+ hard:
+ pods: ${MOON_PODS}
+
+ - kind: Service
+ apiVersion: v1
+ metadata:
+ name: moon
+ spec:
+ selector:
+ app: moon
+ ports:
+ - name: moon
+ protocol: TCP
+ port: 4444
+ type: NodePort
+
+ - kind: Service
+ apiVersion: v1
+ metadata:
+ name: moon-api
+ spec:
+ selector:
+ app: moon-api
+ ports:
+ - name: moon-api
+ protocol: TCP
+ port: 8080
+ type: NodePort
+
+ - kind: Service
+ apiVersion: v1
+ metadata:
+ name: moon-ui
+ spec:
+ selector:
+ app: moon-ui
+ ports:
+ - name: moon-ui
+ protocol: TCP
+ port: 8080
+ type: NodePort
+
+ - kind: DeploymentConfig
+ apiVersion: v1
+ metadata:
+ name: moon
+ spec:
+ replicas: 1
+ template:
+ metadata:
+ labels:
+ app: moon
+ spec:
+ containers:
+ - name: moon
+ image: ${MOON_IMAGE}
+ args:
+ - '-namespace'
+ - '${NAMESPACE}'
+ resources:
+ limits:
+ cpu: "1"
+ memory: "512Mi"
+ requests:
+ cpu: "0.25"
+ memory: "64Mi"
+ ports:
+ - containerPort: 4444
+ volumeMounts:
+ - name: quota
+ mountPath: /quota
+ readOnly: true
+ - name: users
+ mountPath: /users
+ readOnly: true
+ volumes:
+ - name: quota
+ configMap:
+ name: quota
+ - name: users
+ secret:
+ secretName: users
+
+ - kind: DeploymentConfig
+ apiVersion: v1
+ metadata:
+ name: moon-api
+ spec:
+ replicas: 1
+ template:
+ metadata:
+ labels:
+ app: moon-api
+ spec:
+ containers:
+ - name: moon-api
+ image: ${MOON_API_IMAGE}
+ args:
+ - '-namespace'
+ - '${NAMESPACE}'
+ resources:
+ limits:
+ cpu: "0.25"
+ memory: "128Mi"
+ requests:
+ cpu: "0.1"
+ memory: "64Mi"
+ ports:
+ - containerPort: 8080
+ volumeMounts:
+ - name: quota
+ mountPath: /quota
+ volumes:
+ - name: quota
+ configMap:
+ name: quota
+ - name: users
+ secret:
+ secretName: users
+
+ - kind: DeploymentConfig
+ apiVersion: v1
+ metadata:
+ name: moon-ui
+ spec:
+ replicas: 1
+ template:
+ metadata:
+ labels:
+ app: moon-ui
+ spec:
+ containers:
+ - name: moon-ui
+ args:
+ - '--selenoid-uri'
+ - 'http://moon-api:8080'
+ image: ${MOON_UI_IMAGE}
+ ports:
+ - containerPort: 8080
+ protocol: TCP
+ resources:
+ limits:
+ cpu: 100m
+ memory: 64M
+
+parameters:
+- name: NAMESPACE
+ displayName: Namespace
+ description: Namespace where the Moon is running
+ value: default
+ required: true
+
+- name: MOON_IMAGE
+ displayName: Moon docker image
+ description: Name of the image to be used.
+ value: aerokube/moon:latest-release
+ required: true
+
+- name: MOON_API_IMAGE
+ displayName: Moon-API docker image
+ description: Name of the image to be used.
+ value: aerokube/moon-api:latest-release
+ required: true
+
+- name: MOON_UI_IMAGE
+ displayName: Moon-UI docker image
+ description: Name of the image to be used.
+ value: aerokube/selenoid-ui:latest-release
+ required: true
+
+- name: MOON_PODS
+ displayName: Max moon pods in project
+ description: Specify max moon pods for project (4 free slots + Moon + Moon API + Moon UI = 7).
+ value: '7'
+ required: true
+