Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc bug fixes #235

Merged
merged 4 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,8 @@ Injector uses Controller API for managing identities of injected Clients, so it
* Edit all Client Profiles
* Delete all Client Profiles
* Export all Client Profiles
* View selected Registered Devices
* Delete selected Registered Devices

### sdp-dnsmasq
SDP Clients can make DNS queries for specific hosts to specific DNS servers behind the SDP Gateways. This is configured by the sdp-driver which notifies the system about which domains should use the DNS servers behind the SDP Gateways.
Expand Down
4 changes: 2 additions & 2 deletions k8s/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "1.2.4"
version: "1.2.5"

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.2.4"
appVersion: "1.2.5"
1 change: 0 additions & 1 deletion k8s/chart/templates/sdp-injector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ spec:
path: sdp-sidecars.json
containers:
- name: {{ .Chart.Name }}-injector
env:
env:
- name: SDP_SYSTEM_NO_VERIFY
value: {{ .Values.sdp.identityService.sdpSystemNoVerify | quote }}
Expand Down
4 changes: 2 additions & 2 deletions k8s/crd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Helm chart for SDP Kubernetes Injector CRD
type: application

# Chart version should remain consistent with ../chart/Chart.yaml
version: "1.2.4"
version: "1.2.5"

# Chart appVersion should be the same as ../chart/Chart.yaml
appVersion: "1.2.4"
appVersion: "1.2.5"
2 changes: 1 addition & 1 deletion sdp-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdp-common"
version = "1.2.4"
version = "1.2.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion sdp-identity-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdp-identity-service"
version = "1.2.4"
version = "1.2.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
6 changes: 3 additions & 3 deletions sdp-identity-service/src/identity_creator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ impl IdentityCreator {
let sdp_user_name =
SDPUser::new(sdp_user.clone(), Some(sdp_user.clone()), Some(false))
.prefix_name();
info!("[{}] Reconciling SDPUser", &sdp_user);
info!("[{}] Reconciling SDPUser by releasing device ids", &sdp_user);
if let Err(e) = self
.system
.unregister_device_ids_for_username(
Expand All @@ -582,7 +582,7 @@ impl IdentityCreator {
.await
{
error!(
"[{}] Error reconciling SDPUser: {}",
"[{}] Error reconciling SDPUser by releasing device ids: {}",
sdp_user_name,
e.to_string()
);
Expand All @@ -599,7 +599,7 @@ impl IdentityCreator {
.await
{
error!(
"[{}] Error deleting SDPUser: {}",
"[{}] Error releasing device ids owned by SDPUser: {}",
service_user.name,
e.to_string()
);
Expand Down
2 changes: 1 addition & 1 deletion sdp-injector/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdp-injector"
version = "1.2.4"
version = "1.2.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion sdp-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdp-macros"
version = "1.2.4"
version = "1.2.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion sdp-test-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdp-test-macros"
version = "1.2.4"
version = "1.2.5"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
Loading