forked from finn-no/puppet-confluent
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
set up some basic manifests for service control and package installs
- Loading branch information
Kenneth Rørvik
committed
Jun 1, 2016
1 parent
f01eb7f
commit e669ab1
Showing
12 changed files
with
104 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
class confluent::kafka { } | ||
class confluent::kafka { | ||
|
||
class { '::confluent::kafka::config': } -> | ||
class { '::confluent::kafka::service': } | ||
|
||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
class confluent::kafka::service { } | ||
class confluent::kafka::service { | ||
|
||
file { '/etc/init.d/kafka': | ||
ensure => file, | ||
mode => '0755', | ||
} | ||
|
||
service { 'kafka': | ||
ensure => running, | ||
enable => true, | ||
require => File['/etc/init.d/kafka'], | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
class confluent::restservice::install { } | ||
class confluent::restservice::install { | ||
|
||
package { 'confluent-kafka-rest': | ||
ensure => installed, | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
class confluent::restservice::service { } | ||
class confluent::restservice::service { | ||
|
||
file { '/etc/init.d/kafka-restservice': | ||
ensure => file, | ||
mode => '0755', | ||
} | ||
|
||
service { 'kafka-restservice': | ||
ensure => running, | ||
enable => true, | ||
require => File['/etc/init.d/kafka-restservice'], | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
class confluent::schemaregistry::install { } | ||
class confluent::schemaregistry::install { | ||
|
||
package { 'confluent-schema-registry': | ||
ensure => installed, | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
class confluent::schemaregistry::service { } | ||
class confluent::schemaregistry::service { | ||
|
||
file { '/etc/init.d/kafka-schemaregistry': | ||
ensure => file, | ||
mode => '0755', | ||
} | ||
|
||
service { 'kafka-schemaregistry': | ||
ensure => running, | ||
enable => true, | ||
require => File['/etc/init.d/kafka-schemaregistry'], | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
class confluent::zookeeper { } | ||
class confluent::zookeeper { | ||
|
||
class { '::confluent::zookeeper::config': } -> | ||
class { '::confluent::zookeeper::service': } | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
class confluent::zookeeper::service { } | ||
class confluent::zookeeper::service { | ||
|
||
file { '/etc/init.d/zookeeper': | ||
ensure => file, | ||
mode => '0755', | ||
} | ||
|
||
service { 'zoookeeper': | ||
ensure => running, | ||
enable => true, | ||
require => File['/etc/init.d/zookeeper'], | ||
} | ||
|
||
} |