/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.brooklyn.entity.chef.mysql; import org.apache.brooklyn.entity.chef.ChefConfig; import org.apache.brooklyn.entity.chef.ChefEntityImpl; import org.apache.brooklyn.util.git.GithubUrls; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; /** Illustrates how to define an entity using Java as a Java class, extending ChefEntityImpl */ public class TypedToyMySqlEntityChef extends ChefEntityImpl { @Override public void init() { super.init(); String password = "p4ssw0rd"; config().set(CHEF_COOKBOOK_PRIMARY_NAME, "mysql"); config().set(CHEF_COOKBOOK_URLS, ImmutableMap.of( "mysql", GithubUrls.tgz("opscode-cookbooks", "mysql", "v4.0.12"), "openssl", GithubUrls.tgz("opscode-cookbooks", "openssl", "v1.1.0"), "mysql", GithubUrls.tgz("opscode-cookbooks", "build-essential", "v1.4.4"))); config().set(CHEF_LAUNCH_RUN_LIST, ImmutableSet.of("mysql::server")); config().set(CHEF_LAUNCH_ATTRIBUTES, ImmutableMap.<String,Object>of( "mysql", ImmutableMap.of( "server_root_password", password, "server_repl_password", password, "server_debian_password", password))); config().set(ChefConfig.PID_FILE, "/var/run/mysqld/mysqld.pid"); config().set(CHEF_MODE, ChefModes.SOLO); } }