Skip to content

Commit

Permalink
Feature/bk hive (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
HamzaJugon authored Dec 5, 2023
1 parent 1e220ab commit 1abf457
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [5.0.1] - 2023-12-05
### Added
- Added `HADOOP_USER_NAME` environment variable and set it to `beekeeper`

## [5.0.0] - 2023-11-16
### Changed
- Upgdate k8s API to work with 2.x version:
Expand Down
5 changes: 5 additions & 0 deletions k8s-metadata-cleanup.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ resource "kubernetes_deployment_v1" "beekeeper_metadata_cleanup" {
name = local.spring_application_json_key
value = data.template_file.beekeeper_metadata_cleanup_config.rendered
}

env {
name = "HADOOP_USER_NAME"
value = "beekeeper"
}
}
image_pull_secrets {
name = var.docker_registry_secret_name
Expand Down
5 changes: 5 additions & 0 deletions k8s-path-cleanup.tf
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ resource "kubernetes_deployment_v1" "beekeeper_path_cleanup" {
name = local.spring_application_json_key
value = data.template_file.beekeeper_path_cleanup_config.rendered
}

env {
name = "HADOOP_USER_NAME"
value = "beekeeper"
}
}
image_pull_secrets {
name = var.docker_registry_secret_name
Expand Down
5 changes: 5 additions & 0 deletions k8s-scheduler-apiary.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ resource "kubernetes_deployment_v1" "beekeeper_scheduler_apiary" {
name = local.spring_application_json_key
value = data.template_file.beekeeper_scheduler_apiary_config.rendered
}

env {
name = "HADOOP_USER_NAME"
value = "beekeeper"
}
}
image_pull_secrets {
name = var.docker_registry_secret_name
Expand Down

0 comments on commit 1abf457

Please sign in to comment.