From fa8a2b3305db70f8ee746961699f9e41df2c97a6 Mon Sep 17 00:00:00 2001 From: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com> Date: Fri, 14 Jul 2023 04:49:27 -0400 Subject: [PATCH] fix(bungeecord) fix bungeecord tty and stdin (#10428) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** fix tty and stdin. ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [X] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [X] ⚖️ My code follows the style guidelines of this project - [X] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [X] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --- charts/stable/minecraft-bungeecord/Chart.yaml | 2 +- .../stable/minecraft-bungeecord/values.yaml | 29 +++++++++---------- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/charts/stable/minecraft-bungeecord/Chart.yaml b/charts/stable/minecraft-bungeecord/Chart.yaml index 0495c0cfaa2..d528cbf398b 100644 --- a/charts/stable/minecraft-bungeecord/Chart.yaml +++ b/charts/stable/minecraft-bungeecord/Chart.yaml @@ -22,7 +22,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/minecraft-bungeecord - https://github.com/itzg/docker-bungeecord type: application -version: 4.1.3 +version: 4.1.4 annotations: truecharts.org/catagories: | - proxy diff --git a/charts/stable/minecraft-bungeecord/values.yaml b/charts/stable/minecraft-bungeecord/values.yaml index b6a09f16274..b11ce030a0d 100644 --- a/charts/stable/minecraft-bungeecord/values.yaml +++ b/charts/stable/minecraft-bungeecord/values.yaml @@ -11,8 +11,18 @@ j8Image: tag: v2022.4.1@sha256:240694a8f4028188f11d1ba198f656eedf0ac00cf881535cd97b4f1a86ae3231 pullPolicy: Always -tty: true -stdin: true +service: + main: + ports: + main: + port: 25565 + targetPort: 25577 + rcon: + enabled: true + ports: + rcon: + enabled: true + port: 25578 workload: main: @@ -20,6 +30,8 @@ workload: containers: main: imageSelector: image + tty: true + stdin: true probes: liveness: type: tcp @@ -45,19 +57,6 @@ workload: # JVM_XX_OPTS: "" # PLUGINS: "" -service: - main: - ports: - main: - port: 25565 - targetPort: 25577 - rcon: - enabled: true - ports: - rcon: - enabled: true - port: 25578 - persistence: config: enabled: true