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

Install web console server #6359

Merged
merged 1 commit into from
Jan 6, 2018
Merged

Conversation

spadgett
Copy link
Member

@spadgett spadgett commented Dec 5, 2017

https://trello.com/c/9oaUh8xP

Work in progress PR for installing the web console as a deployment on the platform based on the template service broker install.

Related cluster up changes here: openshift/origin#17575

TODO:

  • Set node selector on the console deployment
  • Default replicas to number of masters
  • Update public metrics URL in console AssetConfig config map
  • Update public logging URL to console AssetConfig config map
  • Trigger rollouts on AssetConfig changes
  • Delete temp directories

Follow on tasks:

  • Install console on 3.7 -> 3.9 upgrade, copying master config AssetConfig to new AssetConfig config map
  • Handle new console extension URLs (Serve extension scripts and stylesheets as URLs origin-web-console-server#11) (BLOCKED until the new asset config fields are available)
  • Remove references to deprecated master config AssetConfig (BLOCKED until master is proxy enabled)
  • Tainting the masters for console deployment

cc @sdodson @jwforres

@openshift-ci-robot openshift-ci-robot added do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Dec 5, 2017
@spadgett
Copy link
Member Author

spadgett commented Dec 5, 2017

@jcantrill FYI, this impacts metrics and logging install.

@openshift-merge-robot openshift-merge-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Dec 7, 2017
@openshift-merge-robot openshift-merge-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Dec 7, 2017
@spadgett spadgett force-pushed the web-console-server branch 3 times, most recently from 9a6c050 to 3ca69aa Compare December 8, 2017 18:01
@spadgett
Copy link
Member Author

It is looking like we're going to change extensions so we're not serving them from the master filesystem. See openshift/origin-web-console-server#11

@spadgett spadgett force-pushed the web-console-server branch 9 times, most recently from 36e77e1 to 6308086 Compare December 14, 2017 20:04
@openshift-merge-robot openshift-merge-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Dec 14, 2017
@openshift-merge-robot openshift-merge-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Dec 14, 2017
@spadgett spadgett force-pushed the web-console-server branch 2 times, most recently from 559c1a8 to e11cb56 Compare December 15, 2017 14:30
@spadgett spadgett force-pushed the web-console-server branch 3 times, most recently from 22c33b9 to 72a1bcf Compare January 2, 2018 15:22
@spadgett
Copy link
Member Author

spadgett commented Jan 2, 2018

@sdodson Do you mind taking a look? It'd be good to get feedback since feature freeze is next week.

We might need to do some of this in phases. The console proxy in master can't be enabled until the install changes are there, but we can't remove asset config from the master-config.yaml until the proxy is enabled.

@jwforres
Copy link
Member

jwforres commented Jan 4, 2018

good point, forgot that was how we triggered it, fine with me. We need to make sure we update the "how to disable the console" docs.

@jwforres
Copy link
Member

jwforres commented Jan 4, 2018 via email

@spadgett
Copy link
Member Author

spadgett commented Jan 4, 2018

@deads2k @sdodson @michaelgugino Any objection to making each asset config option you can customize a variable in the template? That probably makes both the ansible and cluster up changes easier and gets rid of some of the yedit stuff @michaelgugino dislikes.

@deads2k
Copy link
Contributor

deads2k commented Jan 5, 2018

@deads2k @sdodson @michaelgugino Any objection to making each asset config option you can customize a variable in the template? That probably makes both the ansible and cluster up changes easier and gets rid of some of the yedit stuff @michaelgugino dislikes.

I'm concerned about that taking us in the wrong direction with regard to template guidance. If you think about what component developers are looking for when writing these templates, they will have a set of specific inputs provided by the installer. These inputs are standard across all components and include things like serving_cert_ca, docker registry url, log level, and image prefix/suffix. The set is small, common to all components, and provides overall information about the cluster.

By contrast, the information for the config is generally specific to the component being configured. Having them separate makes the separation between the kinds of config very clear. It helps to manage the information flow in the templates, in ansible, and in cluster-up. I haven't started writing the general cluster-up code yet, but I suspect we'll keep that strong separation in our information flow to help us organize information gathering and plumbing.

Trying to templatize yaml embedded inside of yaml doesn't seem like a winning proposition from the component developer's perspective either. The separate config file cleanly represents the flow that our processes have for "read the config from disk" and matches the administration of "this file on disk is what you're using" and matches the support need for "this file on disk is the config you're using".

If we separate the actors in play, I see:

  1. component developer: better to have separate files
  2. cluster-up developer: better to have separate files
  3. sys admin: better to have separate files
  4. support: better to have separate files
  5. ansible: wants to combine them?

I'd want to be careful about doing something that would make life harder for nearly everyone. Is there a concrete way that combining the files makes it easier for the other four people that I'm not seeing?

@spadgett spadgett force-pushed the web-console-server branch 2 times, most recently from 782ae04 to afa60c1 Compare January 5, 2018 14:14
@sdodson
Copy link
Member

sdodson commented Jan 5, 2018

After reviewing the discussion around yedit a bit more we'll stick with the established pattern of using yedit to set configmap values. We'll open up a followup to clean up the configuration of metrics and logging urls in the future but we can move forward with that as implemented.

@@ -0,0 +1,2 @@
---
openshift_web_console_nodeselector: {"region":"infra"}
Copy link
Member

Choose a reason for hiding this comment

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

Unfortunately the default we use for this is defined in openshift_hosted role but we can redefine it here. This pattern would align it with other components while still allowing them to override it specifically for the console.

openshift_hosted_infra_selector: "region=infra"
openshift_web_console_nodeselector: "{{ openshift_hosted_infra_selector }}"

@michaelgugino agreed or is there a better way?

@spadgett
Copy link
Member Author

spadgett commented Jan 5, 2018

I spoke with @sdodson, and we agreed to work on upgrade in a follow on PR.

@spadgett spadgett force-pushed the web-console-server branch from afa60c1 to 296ee5e Compare January 5, 2018 20:59
@spadgett spadgett changed the title [WIP] Install web console server Install web console server Jan 5, 2018
@openshift-ci-robot openshift-ci-robot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jan 5, 2018
@spadgett
Copy link
Member Author

spadgett commented Jan 5, 2018

@sdodson I've done some additional testing and pushed my updates. Thanks for your help. PTAL

@sdodson
Copy link
Member

sdodson commented Jan 5, 2018

/lgtm

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Jan 5, 2018
@openshift-merge-robot
Copy link
Contributor

/test all [submit-queue is verifying that this PR is safe to merge]

@spadgett
Copy link
Member Author

spadgett commented Jan 6, 2018

/retest

1 similar comment
@sdodson
Copy link
Member

sdodson commented Jan 6, 2018

/retest

@sdodson
Copy link
Member

sdodson commented Jan 6, 2018

flaked on openshift/origin#17556

@openshift-ci-robot
Copy link

@spadgett: The following tests failed, say /retest to rerun them all:

Test name Commit Details Rerun command
ci/openshift-jenkins/logging 296ee5e link /test logging
ci/openshift-jenkins/install 296ee5e link /test install

Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here.

@sdodson
Copy link
Member

sdodson commented Jan 6, 2018

Another flake, reviewed the install logs and the console is clearly installed successfully. Merging.

@sdodson sdodson merged commit a5eee09 into openshift:master Jan 6, 2018
@spadgett spadgett deleted the web-console-server branch January 9, 2018 15:00
@smarterclayton
Copy link
Contributor

Reading through this code, it's pretty inconsistent between the use of "web-console" and "webconsole". Is there a reason 'web-console' wasn't used throughout?

Also, the labels for the deployment should be app: openshift-web-console across the board.

@@ -0,0 +1,21 @@
kind: AssetConfig
Copy link
Contributor

Choose a reason for hiding this comment

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

This predates this PR, but this isn't the right name for this directory. And the directories should be versioned by major directory, because even with 3.10 we're going to have to change these config files across API versions.

Probably should be

files/components/web-console/3.9/config.yaml
files/components/web-console/3.9/deployment.yaml
files/components/web-console/3.9/rbac.yaml

Choose a reason for hiding this comment

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

Am I missing something obvious? Why aren't these files in the files dir of their respective roles, i.e., role/openshift-web-console/files/{config,deployment,rbac}.yaml?

As for versioning, I'd expect the customer to only be consuming these from the RPMS for the specific version they're installing.

openshift-merge-robot added a commit to openshift/origin that referenced this pull request Feb 10, 2018
Automatic merge from submit-queue (batch tested with PRs 18529, 18214).

Update web console template labels

Consistently use `app: openshift-web-console` for labels in the web console template.

Per openshift/openshift-ansible#6359 (comment)

> Also, the labels for the deployment should be app: openshift-web-console across the board.

/assign @smarterclayton 
/cc @deads2k @jwforres
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lgtm Indicates that a PR is ready to be merged. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants