You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by nd...@apache.org on 2023/05/16 13:42:45 UTC

[hbase-operator-tools] branch HBASE-27827-kubernetes-deployment updated: HBASE-27828 Introduce hbase-kubernetes-deployment module (#117)

This is an automated email from the ASF dual-hosted git repository.

ndimiduk pushed a commit to branch HBASE-27827-kubernetes-deployment
in repository https://gitbox.apache.org/repos/asf/hbase-operator-tools.git


The following commit(s) were added to refs/heads/HBASE-27827-kubernetes-deployment by this push:
     new f521479  HBASE-27828 Introduce hbase-kubernetes-deployment module (#117)
f521479 is described below

commit f52147961d25b2229a1beee79e6ec5269621d8c8
Author: Nick Dimiduk <nd...@apache.org>
AuthorDate: Tue May 16 15:42:40 2023 +0200

    HBASE-27828 Introduce hbase-kubernetes-deployment module (#117)
    
    Signed-off-by: Peter Somogyi <ps...@apache.org>
---
 hbase-kubernetes-deployment/README.md | 27 +++++++++++++++++++++++
 hbase-kubernetes-deployment/pom.xml   | 41 +++++++++++++++++++++++++++++++++++
 pom.xml                               |  1 +
 3 files changed, 69 insertions(+)

diff --git a/hbase-kubernetes-deployment/README.md b/hbase-kubernetes-deployment/README.md
new file mode 100644
index 0000000..d240eac
--- /dev/null
+++ b/hbase-kubernetes-deployment/README.md
@@ -0,0 +1,27 @@
+<!--
+ 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.
+-->
+
+# HBase Kubernetes Deployment
+
+This module contains Kubernetes configurations suitable for deploying ZooKeeper, HDFS, and HBase.
+It supports several physical topologies, including:
+ * a minimum deployment footprint consisting of a single instance of each architectural component.
+ * a high-avaiability deployment footprint consisting of redundancies for each architectural
+   component.
+ * a deployment where HBase region servers and HDFS data nodes share a pod, enabling short-circuit
+   read between them.
diff --git a/hbase-kubernetes-deployment/pom.xml b/hbase-kubernetes-deployment/pom.xml
new file mode 100644
index 0000000..f0f8053
--- /dev/null
+++ b/hbase-kubernetes-deployment/pom.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <!--
+    /**
+     * 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.
+     */
+    -->
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <artifactId>hbase-operator-tools</artifactId>
+        <groupId>org.apache.hbase.operator.tools</groupId>
+        <version>${revision}</version>
+        <relativePath>..</relativePath>
+    </parent>
+
+    <artifactId>hbase-kubernetes-deployment</artifactId>
+    <name>Apache HBase - Kubernetes Deployment</name>
+    <description>Resource definitions for deploying HBase on Kubernetes.</description>
+    <packaging>pom</packaging>
+
+    <dependencies />
+
+    <build />
+    <profiles />
+</project>
diff --git a/pom.xml b/pom.xml
index bd3637a..3bfeff5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -56,6 +56,7 @@
   <modules>
     <module>hbase-table-reporter</module>
     <module>hbase-hbck2</module>
+    <module>hbase-kubernetes-deployment</module>
     <!--Add an assembly module because of http://maven.apache.org/plugins/maven-assembly-plugin/faq.html#module-binaries
          -->
     <module>hbase-operator-tools-assembly</module>