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

[WIP] configcat #12695

Closed
wants to merge 2 commits into from
Closed

[WIP] configcat #12695

wants to merge 2 commits into from

Conversation

mustard-mh
Copy link
Contributor

@mustard-mh mustard-mh commented Sep 6, 2022

Description

Related Issue(s)

Fixes #

How to test

With preview env of this PR

  • Create a team, and get its team_id
  • Configure ConfigCat gitpod_experimental_portsView_enabled key with team_ids labels appended with your team_id
  • See if new PortsView works
  • Process in new PortsView, see if events in segment reported

Release Notes

NONE

Documentation

Werft options:

  • /werft with-preview
  • /werft analytics=segment|TEZnsG4QbLSxLfHfNieLYGF4cDwyFWoe

Comment on lines +254 to +255
exec(`yq w -i ${this.options.installerConfigPath} 'workspace.templates.default.spec.containers.(name==workspace).env[+].name' GITPOD_CONFIGCAT_SDK_KEY`);
exec(`yq w -i ${this.options.installerConfigPath} 'workspace.templates.default.spec.containers.(name==workspace).env.(name==GITPOD_CONFIGCAT_SDK_KEY).value' "${configcatKey}"`);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what's the a reason to put the key in an env variable? I know the key is public but in general I think is not a good practice to put secrets in env variables and also pollutes the shell environment, is it just to avoid copying it for the different clients that may use it (vscode/jetbrains/supervisor)?

Copy link
Contributor Author

@mustard-mh mustard-mh Sep 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is how we did with segment. (Even openvscode-server is using server API trackEvent)

exec(`yq w -i ${this.options.installerConfigPath} 'workspace.templates.default.spec.containers.(name==workspace).env[+].name' GITPOD_ANALYTICS_SEGMENT_KEY`);
exec(`yq w -i ${this.options.installerConfigPath} 'workspace.templates.default.spec.containers.(name==workspace).env.(name==GITPOD_ANALYTICS_SEGMENT_KEY).value' "${this.options.analytics.token}"`);

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah I see that, the same applies to it 🙂

Copy link
Contributor Author

@mustard-mh mustard-mh Sep 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah I see that, the same applies to it 🙂

@jeanp413 I thought segment env var in workspace is not used by anyone. Maybe remove it after ask other teams if it affect something.

If we don't want configcat key to exists in env var, where should we put it and other secret in with third-party component?

  • 👎 Inside build process will affect Self-Hosted images
  • 👎 Inside env leak secret
  • 👎 Inside API only make it a little bit harder to leak
  • 👍 Ask server to provide API about configcat (experimental) like trackEvent API

Copy link
Contributor Author

@mustard-mh mustard-mh Sep 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As the key is public, I thought it can be ok. ( I see dashboard just use it with a constant value here XD)

For segment's key GITPOD_ANALYTICS_SEGMENT_KEY, it's ok too because its value is refer to Production Untrusted project

// newProductionConfigCatClient constructs a new ConfigCat client with production configuration.
function newProductionConfigCatClient(): Client {
// clientKey is an identifier of our ConfigCat application. It is not a secret.
const clientKey = "WBLaCPtkjkqKHlHedziE9g/TwAe6YyftEGPnGxVRXd0Ig";
const client = configcat.createClient(clientKey, {
logger: configcat.createConsoleLogger(LogLevel.Error),
pollIntervalSeconds: 60 * 3, // 3 minutes
maxInitWaitTimeSeconds: 0,
});
return new ConfigCatClient(client);
}

Copy link
Contributor Author

@mustard-mh mustard-mh Sep 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Ask server to provide API about configcat (experimental) like trackEvent API

Should we change plan to add it to server API? It benefits other components like JetBrains Gateway to use it easier. But will take long time to change related codes.

Maybe an issue labels with tech-debt is good for all teams too. (And let go this PR 🙈

cc @akosyakov @jeanp413

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No we should not go through server for it, but used ConfigCat directly.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The good thing about env var is that it is available to all IDEs, so IDE can use it or fallback to non-production hardcoded inside. I think it is alright to continue with env var.

@mustard-mh
Copy link
Contributor Author

Close as we move configcat config.json into proxy, more detail see issue #12739, and its PR #12756

@mustard-mh mustard-mh closed this Sep 8, 2022
@mustard-mh mustard-mh deleted the hw/configcat branch September 27, 2022 19:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants