Skip to content

Commit

Permalink
Merge pull request #292 from cdapio/feature/remove-old-hbase-support
Browse files Browse the repository at this point in the history
remove unsupported hbase compat modules in 6.1
  • Loading branch information
dereklwood authored Mar 30, 2020
2 parents b1ad37e + 645e6e0 commit d674e48
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions recipes/master.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@

include_recipe 'cdap::default'

# All supported release versions support HBase 0.96 and 0.98
pkgs = ['cdap-hbase-compat-0.96', 'cdap-hbase-compat-0.98']
# Support for HBase 0.96 and 0.98 removed in 6.1.1
pkgs = []
pkgs += ['cdap-hbase-compat-0.96', 'cdap-hbase-compat-0.98'] if node['cdap']['version'].to_f < 6.1
pkgs += ['cdap-hbase-compat-1.0', 'cdap-hbase-compat-1.0-cdh'] if node['cdap']['version'].to_f >= 3.1
pkgs += ['cdap-hbase-compat-1.1'] if node['cdap']['version'].to_f >= 3.2
pkgs += ['cdap-hbase-compat-1.0-cdh5.5.0'] if node['cdap']['version'].to_f >= 3.3
Expand Down

0 comments on commit d674e48

Please sign in to comment.